snippetbashTip
npm rebuild — Rebuild native Node.js packages after Node or dependency changes. More information: <https://docs.np
Viewed 0 times
rebuildcommandnodenativeclinpm rebuildafterpackages
Problem
How to use the
npm rebuild command: Rebuild native Node.js packages after Node or dependency changes. More information: <https://docs.npmjs.com/cli/npm-rebuild/>.Solution
npm rebuild — Rebuild native Node.js packages after Node or dependency changes. More information: <https://docs.npmjs.com/cli/npm-rebuild/>.Rebuild a specific package:
npm {{[rb|rebuild]}} {{package}}Rebuild all installed packages:
npm {{[rb|rebuild]}}Rebuild with verbose output:
npm {{[rb|rebuild]}} --verboseRebuild a package in a specific directory:
npm {{[rb|rebuild]}} --prefix {{path/to/dir}} {{package}}Rebuild without using the npm cache:
npm {{[rb|rebuild]}} --no-cacheRebuild in global mode:
npm {{[rb|rebuild]}} {{[-g|--global]}}Code Snippets
Rebuild a specific package
npm {{[rb|rebuild]}} {{package}}Rebuild all installed packages
npm {{[rb|rebuild]}}Rebuild with verbose output
npm {{[rb|rebuild]}} --verboseRebuild a package in a specific directory
npm {{[rb|rebuild]}} --prefix {{path/to/dir}} {{package}}Rebuild without using the npm cache
npm {{[rb|rebuild]}} --no-cacheContext
tldr-pages: common/npm rebuild
Revisions (0)
No revisions yet.