Getting Started

Starting a new angular project

Install the Angular CLI

You use the Angular CLI to create projects, generate application and library code, and perform a variety of ongoing development tasks such as testing, bundling, and deployment

$ npm install -g @angular/cli

Create a workspace and initial application

$ ng new {project name}

Run the application

cd { project name }
ng serve --open

Last updated