Home > Article > Web Front-end > How to Create a Specific Version of an Angular Project without Installing Angular CLI
Are you working with Angular and need to set up projects with different Angular versions? Here’s a simple guide to creating Angular projects for specific versions, both with and without the Angular CLI!
When working on multiple Angular projects, sometimes you need to lock in a particular version. Perhaps your project relies on certain features available only in specific versions, or maybe it requires compatibility with legacy codebases.
Here's how to create projects with particular Angular versions—whether or not you’re using the CLI!
Did you know that you can initialize Angular projects for specific versions without installing the CLI? Let’s look at the syntax and examples.
npm init @angular@3d689bd3819ead35ed794427bd12f459 1b8b62ddc634804650a3eb289a01f98b
Replace 3d689bd3819ead35ed794427bd12f459 with your desired Angular version and 1b8b62ddc634804650a3eb289a01f98b with your project’s name. For instance, if you want to create an Angular 16 project named sampleApp, you’d run:
npm init @angular@16 sampleApp
This approach sets up a basic Angular project without installing the Angular CLI globally. It’s handy if you want to avoid installing extra tools or if you’re working in a constrained environment.
Angular 13 project named legacyApp:
npm init @angular@13 legacyApp
This command pulls down the necessary Angular version directly, setting up the project structure and dependencies specific to that version.
If you prefer using the Angular CLI, you can still create a project for a specific version without permanently installing the CLI. Use npx to run the CLI directly, specifying your version.
npx -p @angular/cli@3d689bd3819ead35ed794427bd12f459 ng new 1b8b62ddc634804650a3eb289a01f98b
This command uses npx to temporarily run the specified CLI version, creating a project tailored to that Angular version.
npx -p @angular/cli@13 ng new demoApp
This command creates a new project using Angular CLI version 13, even if you have a different Angular CLI version installed globally.
Whether you choose to go with or without the CLI, Angular’s flexibility with npm init and npx makes it easy to manage projects across different versions. So next time you need to spin up a specific Angular version project, you’ll know exactly how to do it without needing to fuss over CLI installations!
Angular Version | Without CLI | With CLI |
---|---|---|
16 | npm init @angular@16 sampleApp | npx -p @angular/cli@16 ng new sampleApp |
13 | npm init @angular@13 legacyApp | npx -p @angular/cli@13 ng new demoApp |
And that's it! Hope you found this guide helpful for your Angular projects. Comment below with any questions or tips you might have for working with specific Angular versions.
Happy coding!
The above is the detailed content of How to Create a Specific Version of an Angular Project without Installing Angular CLI. For more information, please follow other related articles on the PHP Chinese website!