Skip to content

Commit c2f9528

Browse files
committed
Update nodejs-basics.md
1 parent 15054cf commit c2f9528

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Node.js/Basics/nodejs-basics.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ Node.js has a huge number of packages created by different developers that you c
88

99
Basic console commands:
1010

11-
_Create a `package.json` - configuration file that will describe the installed packages, scripts and application information:_
11+
- _Create a `package.json` - configuration file that will describe the installed packages, scripts and application information:_
1212

1313
```sh
1414
npm init -y
1515
```
1616

17-
_Add package:_
17+
- _Add package:_
1818

1919
```sh
2020
npm install package-name
2121
```
2222

23-
_Add package only for development:_
23+
- _Add package only for development:_
2424

2525
```sh
2626
npm install -D package-name
2727
```
2828

29-
_Delete package:_
29+
- _Delete package:_
3030

3131
```sh
3232
npm uninstall package-name

0 commit comments

Comments
 (0)