We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c68fa78 commit 441f762Copy full SHA for 441f762
1 file changed
general/npm/readme.md
@@ -0,0 +1,22 @@
1
+# npm 6
2
+
3
+## `npm i`
4
5
+installs everything from packagelock or package if not found
6
7
8
+## `npm i pac`
9
10
+installs pac at latest version according to package.json defined range or latest if it is not there yet and will be saved in package.json (and lock)
11
12
+## `npm update`
13
14
+updates all package to a version according to package.json defined range will be saved in package.json (and lock)
15
16
+## `npm i pac@latest`
17
18
+forces update pac to latest version and will be saved in package.json (and lock)
19
20
+## `npm outdated`
21
22
+overview of outdated packages
0 commit comments