Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
npm_cheat_sheet [2023/07/26 01:07] – [NPM Cheat Sheet] stephen | npm_cheat_sheet [2023/08/18 07:03] (current) – external edit 127.0.0.1 |
---|
| |
| ''<nowiki>npm install</nowiki>'' | Install missing packages. | | | ''<nowiki>npm install</nowiki>'' | Install missing packages. | |
| | ''<nowiki>npm install package --save</nowiki>'' | Save installed packages to the ''package.json'' file as dependencies. Will be available in all builds, including production. | |
| | ''<nowiki>npm install package --save-dev</nowiki>'' | Save installed packages to the ''package.json'' file, under the ''devDependencies'' object, as dependencies. Will be available only in dev builds, i.e. not production. | |
| ''<nowiki>npm list -g --depth=0</nowiki>'' | List globally installed packages. | | | ''<nowiki>npm list -g --depth=0</nowiki>'' | List globally installed packages. | |
| ''<nowiki>npm uninstall -g [package_name]</nowiki>'' | Uninstall a global package. | | | ''<nowiki>npm uninstall -g [package_name]</nowiki>'' | Uninstall a global package. | |