User Tools

Site Tools


npm_cheat_sheet

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
npm_cheat_sheet [2023/07/23 23:29] – [NPM Cheat Sheet] stephennpm_cheat_sheet [2023/08/18 07:03] (current) – external edit 127.0.0.1
Line 2: Line 2:
  
 | ''<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. |
Line 7: Line 9:
 | ''<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]</nowiki>'' | List basic information about a package. |
-| ''<nowiki>npm view [package_name] versions --jason</nowiki>'' | List version information about a package. |+| ''<nowiki>npm view [package_name] versions --json</nowiki>'' | List version information about a package. |
 ===== Updating Packages ===== ===== Updating Packages =====
  
npm_cheat_sheet.1690154945.txt.gz · Last modified: 2023/07/25 00:29 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki