Skip to content

Instantly share code, notes, and snippets.

@nepsilon
Last active July 12, 2016 07:00
Show Gist options
  • Save nepsilon/055673a527a0e16a749a to your computer and use it in GitHub Desktop.
Save nepsilon/055673a527a0e16a749a to your computer and use it in GitHub Desktop.
4 npm tips — First published in fullweb.io issue #8

4 npm tips

Node npm is certainly one of the best package manager out there. Here are some awesome tips you may not know:

1. Find a module owner:

$ npm owner ls packagename

2. Open the GitHub issues page:

$ npm bug packagename

3. Install packages as dependencies:

$ npm install package_name --save

4. Install packages as dev env dependencies:

$ npm install package_name --dev-save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment