Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

2
  • 1
    it seems like when i installed it globally the npm/node-modules folder was empty and i was trying to use ng new project-name it was showing some modules missing ... I had to install them each using the given command.Then it solved the issue but is there any single command to install all of the them at once ? Commented Jun 24, 2016 at 7:06
  • @VishalNair you can just run npm install if all dependencies are listed in a package.json file. They are added automatically on npm install <package-name>, the --save is no longer needed Commented Feb 29 at 22:31