Both sides previous revisionPrevious revisionNext revision | Previous revision |
npm_cheat_sheet [2021/08/28 23:47] – [Updating Packages] 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 ===== |
| |
| ''<nowiki>npm-check-updates -g</nowiki>'' (Run as admin) | Lists what global packages are out of date and gives the command to update them. | | | ''<nowiki>npm-check-updates -g</nowiki>'' (Run as admin) | Lists what global packages are out of date and gives the command to update them. | |
| |
| ===== Versioning ===== |
| |
| | ''^1.2.3'' | Means any ''1.x.y'' version that is equal or higher than ''1.2.3'' and less than ''2.0.0''. | |
| | ''^0.1.2'' | The leading zero is a special case. Means any ''0.1.x'' version that is equal or higher than ''0.1.2'' and less than ''0.2.0''. | |
| | ''~2.4.5'' | Patch version only. Means any ''2.4.x'' version that is equal or higher than ''2.4.5'' and less than ''2.5.0''. | |