npm install npm -g -f
npm install node -g -f
npm config list
# global
npm root -g
# local
npm root
# global
npm ls --depth 0 -g
# local
npm ls --depth 0
# global
npm update -g
# local
npm update
npm install <package> --save-dev
devDependencies
is for developers and not for users.- Packages in
devDependencies
will not be installed when users donpm install <package>
. - You cannot install a package globally and add it to
devDependencies
npm uninstall <package> -g
npm uninstall <package> --save-dev
npm install @scope/project
- A package preceded by an @ symbol such as
@username/package
is a scoped package.- A scope lets you create a package with the same name as a package created by another user or organization, which is conventionally called "Org" in Node.js, without conflict.
- https://docs.npmjs.com/about-scopes
- https://docs.npmjs.com/misc/scope
npm init -y
npx <executable> # e.g. npx tsc foo.ts
Tip: If you are using npm 5.2 or higher, we recommend using npx to run packages globally. https://docs.npmjs.com/downloading-and-installing-packages-globally
npm init -y
npm install eslint eslint-config-google --save-dev
code .
npm init -y
npm install eslint eslint-config-google puppeteer --save-dev
code .
--save
has been the default behavior since npm 5.