Angular Project Setup [step by step guide]

preview_player
Показать описание
This video contains step by step commands to create first simple angular project. It also contains steps to test if application is up and running and on which url the application is hosted.

Create your first Angular Project

Learn in this Angular 2/4/6/8 Install Tutorial how to create your first Angular Project and make your Hello World script.

This tutorial is for beginner and no prior coding experience is required.

Objectives:

Install Angular latest Cli
Create new Angular Project
Run Angular on browser
Create Hello World Project

Angular Installation Commands
npm install -g @angular/cli
cd any-folder
ng new my-first-app “which will create a project for you”
cd my-first-app
ng serve “serve is the command which will compile the project for you and run the server to have your project running under localhost”
Рекомендации по теме