Skip to content

Instantly share code, notes, and snippets.

@abhisekp
Last active September 24, 2017 11:21
Show Gist options
  • Save abhisekp/1b3d12643881c24634f69edb43e09dd3 to your computer and use it in GitHub Desktop.
Save abhisekp/1b3d12643881c24634f69edb43e09dd3 to your computer and use it in GitHub Desktop.
NPM Ecosystem

Global NPM Packages

These are some of the useful global packages that I use regularly or need frequently from time to time.

  1. nodemon - This is a easy to get started auto reloader, file watcher, node script runner.
    $ npm i -g nodemon
    
    # nodemon -q .
    $ nodemon -q -x node .
    
    # -q = quiet
    # -x = the next arguments are commands to run

Local NPM Modules

- modules I install as a project dependency
  1. lodash
  2. debug
  3. npm-run-all
  4. babel-cli
  5. babel-preset-env
  6. babel-preset-stage-0
  7. webpack
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment