2024-06-03
This commit is contained in:
26
_-Review/npm.md
Normal file
26
_-Review/npm.md
Normal file
@ -0,0 +1,26 @@
|
||||
---
|
||||
type: "topic"
|
||||
created: "2024-01-06T01:25:36.042Z"
|
||||
updated: "2024-01-06T01:25:36.042Z"
|
||||
---
|
||||
|
||||
# npm
|
||||
|
||||
## npm is a package manager for the JavaScript programming language maintained by npm, Inc.
|
||||
|
||||
```bash
|
||||
# similar to nuget restore
|
||||
npm install
|
||||
# Update
|
||||
npm audit fix
|
||||
# force
|
||||
npm audit fix --force
|
||||
# similar to build
|
||||
npm run compile
|
||||
# install dev node
|
||||
npm install --save-dev esbuild
|
||||
# install global
|
||||
npm install -g npm@9.7.2
|
||||
npm install -g @basementuniverse/kanbn
|
||||
npm list -g
|
||||
```
|
Reference in New Issue
Block a user