Best of AngularNovember 2025

  1. 1
    Article
    Avatar of newstackThe New Stack·28w

    Why the Frontend Should Run AI Models Locally With ONNX

    Running AI models locally in the browser using ONNX Runtime Web offers significant advantages over cloud-based approaches. Local execution eliminates privacy concerns by keeping sensitive data on-device, enables offline functionality, and provides instant feedback loops. ONNX acts as a universal format for ML models, allowing models trained in PyTorch or TensorFlow to run anywhere via JavaScript. Angular's Signals feature (v16+) provides the performance isolation needed for heavy inference operations. The approach enables mixing local models for low-latency tasks with cloud calls for complex reasoning, while maintaining transparency about data handling.

  2. 2
    Article
    Avatar of nxNx·26w

    Nx 22.1 Release: Terminal UI on Windows, Storybook 10, Vitest 4, and more!

    Nx 22.1 introduces Terminal UI support for Windows users, enabling the same task management experience previously available only on Mac and Linux. The release adds Storybook 10 support with AI-powered ESM migration assistance, splits Vitest into a dedicated plugin with atomizer support for parallel test execution, and includes compatibility updates for Next.js v16 and Cypress v15. Angular 21 support with Vitest as the default test runner is coming in version 22.2.

  3. 3
    Article
    Avatar of telerikTelerik·27w

    Angular Signal Forms vs. Reactive Forms

    Angular is introducing Signal Forms as a new approach to form handling, moving away from traditional Reactive Forms. The article demonstrates both implementations side-by-side through a profile form example with username async validation and password matching. Signal Forms uses typed schemas and function-based validators, automatically binding with HTML form validation, though the async validation setup is more complex. The comparison includes custom validators, error handling, and template binding differences between the two approaches.

  4. 4
    Article
    Avatar of bytesdevBytes by ui.dev·29w

    Next.js but make it Angular

    AnalogJS 2.0 brings modern meta-framework features to Angular, including file-based routing, Vite ecosystem integration, and unified rendering approaches. The release addresses Angular's technical SSR support with a more developer-friendly experience similar to Next.js. Additional coverage includes TypeScript's rise as GitHub's most-used language, TanStack Start integration with shadcn/ui, Turborepo 2.6 with microfrontend support, and common async/await pitfalls in forEach loops.