`npm repo` - open git project in browser
`npm run` - show all available scipts to run
`npm i -g ntl` - nice wizard style `npm run` alternative
`npm i -D cross-env` - gives ability to run scripts cross platform independent
`npm config edit`
Instead of using:
`cd folder && npm start && cd ..`
to open separate projects with own `package.json` you can use: `--prefix` to change path for folder with different `package.json` scripts:
```
"start": npm start --prefix client && npm start --prefix server"
```
**Extra tip**: version types
```
// 1.0.0
npm version patch
// 1.0.1
npm version minor
// 1.1.0
npm version major
// 2.0.0
```