DanWahlin / Angular-JumpStart

Angular and TypeScript JumpStart example application

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Problem getting started

StrangeCargo74 opened this issue · comments

I cloned the repo successfully, npm install failed:

npm ERR! peerinvalid The package es6-shim does not satisfy its siblings' peerDependencies requirements!

compile didn't show any error, but npm start also failed:

Error: listen EACCES

Ouch

change package.json line 14 to "es6-shim": "^0.33.13" should work.

That's great, it worked for the install problem.

The 'npm start' error was avoided by changing the port that the live-server was listening to, the line in package.json was changed to:

"start": "live-server --open=src --port=9000"

many thanks!