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/23 23:23] – 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. | |
| ''<nowiki>npm outdated</nowiki>'' | List outdated packages. | | | ''<nowiki>npm outdated</nowiki>'' | List outdated packages. | |
| ''<nowiki>npm update</nowiki>'' | This will update the ''package-lock.json'' file but not the ''package.json'' file. | | | ''<nowiki>npm update</nowiki>'' | This will update the ''package-lock.json'' file but not the ''package.json'' file. | |
| | ''<nowiki>npm view [package_name]</nowiki>'' | List basic information about a package. | |
| | ''<nowiki>npm view [package_name] versions --json</nowiki>'' | List version information about a package. | |
===== Updating Packages ===== | ===== Updating Packages ===== |
| |