Angular 5 Getting Started
Angular 5 QuickStart
Angular is one of the most popular single page application (SPA) platform based on TypeScript.now we gonna set up and start angular 5 application, just follow the steps
Step 1: Set up Environment
TextEditors create a nice environment experience to your development
Install Node.js and npm in your machine
Note: Check that you have at least node 6.9.x and npm 3.x.x via the terminal window.just check your version using following comments node -v and npm -v
then install Angular CLI
Note: Here my-app is a project name, default app by running the following command
npm install -g @angular/cli
Step 2: Create a new project
ng new my-app
Step 3: Run the application
cd my-app ng serve --open
if you want more information to refer an Angular Website 😀