We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec617bd commit 0a4c0f0Copy full SHA for 0a4c0f0
common/npm.md
@@ -0,0 +1,23 @@
1
+# npm
2
+
3
+> Node package manager, to manage Node.js projects and install module dependencies.
4
5
+- Create a new project in the current folder
6
7
+`npm init`
8
9
+- Download all dependencies referenced in package.json
10
11
+`npm install`
12
13
+- Download a given dependency, and add it to the package.json
14
15
+`npm install {{module_name}}@{{version}} --save`
16
17
+- Set the version of the current project
18
19
+`npm version {{1.2.3}}`
20
21
+- Publish the current project
22
23
+`npm publish`
0 commit comments