Newsletter
Join the Community
Subscribe to our newsletter for the latest news and updates
A minimal Angular 13 starter app from Vercel's examples repo, generated with Angular CLI 13.1.3 and deployable to Vercel with zero configuration.

Next.js example app implementing the OpenID Connect Authorization Code Flow with PKCE via Auth.js, deployable to Vercel or Cloudflare Pages.

A production-ready React Router template for full-stack React apps with SSR, HMR, TypeScript, Tailwind CSS, and Docker deploy configs.

Next.js Commerce fork with Builder.io visual editing and Vercel Edge Middleware for cookie-driven personalization and A/B testing.

A Next.js example using the Vercel AI SDK's streamText function to automatically handle multiple tool call roundtrips in one chat turn.

A fullstack Next.js template for building AI apps with x402 accountless payments, MCP paid tools, and Coinbase CDP server wallets.

Next.js onchain commerce template powered by OnchainKit and Coinbase Commerce, with multi-product checkout and Vercel deployment.
Angular Boilerplate is a starter Angular application published in Vercel's examples repository that can be deployed to Vercel with zero configuration.
The Angular boilerplate is a single-directory Angular application sample from Vercel's examples collection, generated with Angular CLI version 13.1.3. A developer clones the repository, edits the TypeScript source files, and gets both a local development server and a Vercel-hosted deployment from the same project. It ships no custom design system, CMS, or authentication layer — it is the plain Angular CLI scaffold plus Vercel deployment wiring. A live example is published at angular-template.vercel.app.
framework-boilerplates/angular directory straight into a new Vercel project, so no build settings have to be entered by hand.ng command set rather than a custom or ejected build pipeline.ng generate creates components, directives, pipes, services, classes, guards, interfaces, enums, and modules from the command line.ng serve serves the app at http://localhost:4200/ and reloads automatically whenever a source file changes.dist/ — ng build compiles the project and writes the build artifacts into the dist/ directory.ng test executes the unit test suite through the Karma test runner.ng e2e is present, but it requires you to first add a package that implements end-to-end testing capabilities.ng serve, ng build, ng test, and ng generate in a working project rather than a blank one.ng serve, and build UI against the local dev server on port 4200 before touching hosting.ng test with Karma out of the box, then add an e2e package of your own choosing for browser-level tests.framework-boilerplates/angular directory of Vercel's examples repo.ng serve reloads the browser automatically as you save.ng build for production output in dist/, or push to the connected repository so Vercel rebuilds and republishes.Yes. It is published inside Vercel's public examples repository and can be cloned and deployed without a paid plan. Hosting on Vercel follows whatever plan your Vercel account is on.
The project was generated with Angular CLI version 13.1.3, so it targets the Angular 13 toolchain. Upgrading to a newer Angular major version is left to the developer via the standard Angular update process.
No. Because it is the standard Angular CLI scaffold, ng serve runs it locally at http://localhost:4200/ and ng build produces artifacts in dist/ for any static host. Vercel is only the zero-configuration deployment target.
Unit tests run through Karma with ng test. End-to-end testing is not wired to a specific tool — the ng e2e command requires you to install a package that adds e2e testing capabilities first.
Run ng generate component component-name. The same generator command also produces directives, pipes, services, classes, guards, interfaces, enums, and modules.
Vercel's examples repository also publishes framework boilerplates for other front-end stacks, including Next.js and Nuxt, so the Angular entry is the choice when you specifically want Angular rather than React or Vue.