NPM: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
 
Line 135: Line 135:
* [[ExtJS]]
* [[ExtJS]]
* [[Yarn]]
* [[Yarn]]
| valign="top" |
| valign="top" |
|-
| colspan="3" |
----
|-
| valign="top" |
* [[CocoaPods]]
* [[Maven]]
* [[Conan]]
* [[Bazel]]
* [[Ant]]
* [[Ivy]]


| valign="top" |
| valign="top" |

Latest revision as of 21:57, 18 January 2024

npm install <git-host>:<git-user>/<repo-name>
npm install <alias>@npm:<name>
npm install <git repo url>
npm install <tarball file>
npm install <tarball url>
npm install <folder>
npm install [<@scope>/]<name>@<version range>
npm install [<@scope>/]<name>@<version>
npm install [<@scope>/]<name>@<tag>
npm install [<@scope>/]<name>

npm install

aliases: npm i, npm add
common options: [-P|--save-prod|-D|--save-dev|-O|--save-optional|--save-peer] [-E|--save-exact] [-B|--save-bundle] [--no-save] [--dry-run]

Angular

npm install -g @angular/cli
ng serve --open

ReactJS

npm install
npm start

Knowledge

npm config set key=value [key=value...]
npm config delete key [key ...]
npm config get [key ...]
npm config list
npm config edit

npm install npm@latest -g
npm list -g --depth 0
node -v
npm -v
npm cache clean -f && npm install -g n && n stable
npm install -g npm
npm upgrade -g
npm update -g

npm install -g serve
serve -s build

npm install react-simple-code-editor --force --legacy-peer-deps
npm config set legacy-peer-deps true
npm install  --legacy-peer-deps

References