angular/adev
Shuaib Hasan Akib b3d102b475 docs: update template examples to use signal-based viewChild instead of decorator-based @ViewChild (#63630)
Co-authored-by: Matthieu Riegler <kyro38@gmail.com>

Co-authored-by: Matthieu Riegler <kyro38@gmail.com>

PR Close #63630
2025-09-08 12:52:28 -07:00
..
scripts docs(docs-infra): generate llms-full.txt at build time (#61864) 2025-07-08 11:27:54 -07:00
shared-docs docs(docs-infra): quote title attributes in links (#63578) 2025-09-08 10:14:48 -07:00
src docs: update template examples to use signal-based viewChild instead of decorator-based @ViewChild (#63630) 2025-09-08 12:52:28 -07:00
tools build: migrate remaing esbuild and nodejs_binary usages to new toolchain (#62435) 2025-07-03 08:09:33 +00:00
angular.json docs(docs-infra): generate llms-full.txt at build time (#61864) 2025-07-08 11:27:54 -07:00
BUILD.bazel build: add additional comments explaining deep imports in adev (#63644) 2025-09-08 11:15:07 -07:00
firebase.json Revert "ci: redirect adev to index.csr.html (#63168)" (#63177) 2025-08-15 09:43:15 +02:00
karma.conf.js build: migrate adev to use rules_angular based cli rules (#62435) 2025-07-03 08:09:33 +00:00
package.json build: update cross-repo angular dependencies (#63581) 2025-09-03 20:56:00 -07:00
README.md build: replace docs script with adev (#62944) 2025-08-01 12:39:37 +00:00
test-main.ts refactor(docs-infra): Remove rethrowing error handler (#61243) 2025-05-09 10:40:14 -07: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): remove @adev/constant path (#63213) 2025-08-18 10:06:25 +02: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