Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
npm uninstall -g
Removes the package globally
npm uninstall nodemon -g  /  npm uninstall -g nodemon
by Valeri Tandilashvili
4 years ago
0
NPM
0
npm root
Shows the current app folder location
npm root
by Valeri Tandilashvili
4 years ago
0
NPM
0
Shows the location of globally installed packages (location where our global modules go)
npm root -g
The result (on this computer) is
C:\Users\Admin\AppData\Roaming\npm\node_modules
by Valeri Tandilashvili
4 years ago
0
NPM
NPM Crash Course
0
Shows all packages with their dependencies
npm list
by Valeri Tandilashvili
4 years ago
0
NPM
NPM Crash Course
0
Shows all packages without their dependencies (only top level)
npm list --depth 0
Shows all packages with only their dependencies (one level deep)
npm list --depth 1
by Valeri Tandilashvili
4 years ago
0
NPM
NPM Crash Course
0
We can run scripts that are listed in
scripts
key, inside
package.json
file. If the content is the following
"scripts": {
    "start": "node app.js",
    "server": "live-server"
}
Then we can run
npm run start
and npm will run
node app.js
We can also run
npm run server
and it will run
live-server
by Valeri Tandilashvili
4 years ago
0
NPM
NPM Crash Course
0
Shows all the different ways we can use
npm install
command (in console)
npm install -h
Alternative to the above command
npm install --help
by Valeri Tandilashvili
4 years ago
0
NPM
npm Tutorial for Beginners
0
Opens up a web page with detailed documentation about the command
by Valeri Tandilashvili
4 years ago
0
NPM
npm Tutorial for Beginners
0
Search in NPM documentation with keyword
update
by Valeri Tandilashvili
4 years ago
0
NPM
npm Tutorial for Beginners
0
Deletes manually set default license (default license will become
ISC
)
npm config delete init-license
Deletes manually set default author name (default author will become empty string)
npm config delete init-author-name
by Valeri Tandilashvili
4 years ago
0
NPM
npm Tutorial for Beginners
0
Results: 1580