angular/adev
2025-11-04 22:58:24 +00:00
..
scripts ci: refactor cross-repo documentation update scripts (#64792) 2025-10-30 19:19:20 +00:00
shared-docs docs: add v21 landing page 2025-11-03 23:59:20 +00:00
src docs(docs-infra): add missing meta tags for author, keywords, and Twitter 2025-11-04 22:58:24 +00:00
angular.json refactor(docs-infra): switch to use unit-test builder 2025-10-28 20:52:22 +01:00
BUILD.bazel refactor(docs-infra): switch to use unit-test builder 2025-10-28 20:52:22 +01:00
firebase.json docs(docs-infra): allow cors for json files (#64783) 2025-10-30 17:50:05 +00:00
package.json build: update cross-repo angular dependencies 2025-11-03 21:27:02 +00:00
README.md docs: high level architecture mention in readme (#63828) 2025-09-16 15:00:16 +00:00
tailwind.config.js docs(docs-infra): enable using Tailwind CSS in code examples (#63583) 2025-09-10 23:01:36 +00:00
tsconfig.app.json build: fix adev first party linking and re-enable tests (#60825) 2025-04-10 14:19:52 +00:00
tsconfig.json docs(docs-infra): cleanup tsconfig (#63641) 2025-09-10 22:13:15 +00:00
tsconfig.spec.json test(docs-infra): update adev tests to be zoneless (#57100) 2024-07-23 14:50:32 -07:00
tsconfig.worker.json refactor(docs-infra): refactor adev to build using architect (#53497) 2023-12-11 19:21:07 +00:00

Angular.dev

This site is built with Angular.

The content is written primarily in Markdown format located in src/content. For simple edits, you can directly edit the file on GitHub and generate a Pull Request.

Local Development

For local development, pnpm is the preferred package manager. You can set up a local environment with the following commands :

# Clone Angular repo
git clone https://github.com/angular/angular.git

# Navigate to project directory
cd angular

# Install dependencies
pnpm

# Build and run local dev server
# NOTE: Initial build will take some time
pnpm adev

If you are having issues with the docs building, see the FAQs section.

Contributing

Want to report a bug, contribute some code, or improve the documentation? Excellent!

Read through our contributing guidelines to learn about our submission process, coding rules, and more.

And if you're new, check out one of our issues labeled as help wanted or good first issue.

Code of Conduct

Help us keep Angular open and inclusive. Please read and follow our Code of Conduct.

FAQs

The build is failing and I'm seeing bazel:bazel failed: missing input file messages.

This is most likely due to a bazel dependency / caching issue. To resolve this, run the following command:

# Try this first
pnpm bazel clean

# If that doesn't work, try it with the expunge flag
pnpm bazel clean --expunge

High level architecture

The angular.dev website is a modern Angular application that utilizes Static Site Generation (SSG) to deliver pre-rendered, high-performance content to users.

The architecture is designed for efficiency and maintainability:

Content Sources: The documentation is sourced from two main places within the monorepo. The guides and tutorials are written in Markdown files, while the API reference pages are automatically generated by extracting documentation directly from the TypeScript source code of the Angular framework packages.

Build Process: During the build process, the Markdown files are converted into HTML. Simultaneously, the API documentation is extracted from the code comments. This content is then integrated into the Angular application.