Harikesh Yadav
Harikesh Yadav

Reputation: 71

How to create and run angular 2 program in windows platform?

I have installed npm and related package like typscript, angular 2 etc. but not able to run angular 2 in browser. So anyone please walk me through the process that I can create and run angular 2 in windows platform.

Upvotes: 0

Views: 431

Answers (2)

user3636086
user3636086

Reputation: 823

There are plenty of good angular2 demos available on github which are working fine on windows. For example: https://github.com/meandemo/ng2-demo.git

Good luck with your learning journey.

Upvotes: 0

Zeynal
Zeynal

Reputation: 169

As requested use the following line:

npm install angular2

You can append flag --save to store the name of the module in an existing package.json if appropriate.

after following line

npm start

Upvotes: 1

Related Questions