npm
CLI commands
npm doctor
- Check your environmentsnpm init [--force|-f|--yes|-y|--scope]
- Create a package.json fileEXAMPLES
Create a new React-based project using
create-react-app
:Generate it without having it ask any questions:
npm install [-g]
- Install a packagealias: npm i
common options: [-P|--save-prod|-D|--save-dev|-O|--save-optional][-e|--save-exact] [-B|--save-bundle][--no-save] [--dry-run]
-P, --save-prod: Package will appear in your dependencies. This is the default unless -D or -O are present.
-D, --save-dev: Package will appear in your devDependencies.
-O, --save-optional: Package will appear in your optionalDependencies.
--no-save: Prevents saving to dependencies.
-g or --global: Installs the current package context as a global package
npm outdated [-g]
- Check for outdated packagesnpm uninstall [-g]
- Remove a packagenpm update [-g]
- Update a package
Last updated