angular/dev-app
Angular Robot 7017557d4d
Some checks are pending
DevInfra / assistant_to_the_branch_manager (push) Waiting to run
CI (push) / zone-js (push) Waiting to run
CI (push) / lint (push) Waiting to run
CI (push) / devtools (push) Waiting to run
CI (push) / test (push) Waiting to run
CI (push) / integration-tests (push) Waiting to run
CI (push) / adev (push) Waiting to run
CI (push) / vscode-ng-language-service (push) Waiting to run
CI (push) / publish-snapshots (push) Waiting to run
CI (push) / adev-deploy (push) Blocked by required conditions
Update ADEV Cross Repo Docs / Update Cross Repo ADEV Docs (push) Waiting to run
build: update cross-repo angular dependencies
See associated pull request for more information.
2026-05-12 15:53:07 -07:00
..
public build: update aspect_rules_js to 3.0.2 (#67518) 2026-03-11 13:37:33 -07:00
src refactor(core): Don't throw when there are not async metadata 2026-04-27 17:04:09 -07:00
angular.json build: include localize in dev app 2026-03-10 11:13:49 -07:00
BUILD.bazel build: use different default port for dev-app 2026-02-27 09:04:15 -08:00
package.json build: update cross-repo angular dependencies 2026-05-12 15:53:07 -07:00
README.md build: add a dev-app 2025-11-06 09:05:32 -08:00
tsconfig.app.json build: add a dev-app 2025-11-06 09:05:32 -08:00
tsconfig.json build: add a dev-app 2025-11-06 09:05:32 -08:00
tsconfig.spec.json build: add a dev-app 2025-11-06 09:05:32 -08:00

Angular dev-app

For experimentation while developing Angular.

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 install

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

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