We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15054cf commit c2f9528Copy full SHA for c2f9528
1 file changed
Node.js/Basics/nodejs-basics.md
@@ -8,25 +8,25 @@ Node.js has a huge number of packages created by different developers that you c
8
9
Basic console commands:
10
11
-_Create a `package.json` - configuration file that will describe the installed packages, scripts and application information:_
+- _Create a `package.json` - configuration file that will describe the installed packages, scripts and application information:_
12
13
```sh
14
npm init -y
15
```
16
17
-_Add package:_
+- _Add package:_
18
19
20
npm install package-name
21
22
23
-_Add package only for development:_
+- _Add package only for development:_
24
25
26
npm install -D package-name
27
28
29
-_Delete package:_
+- _Delete package:_
30
31
32
npm uninstall package-name
0 commit comments