Skip to content

Commit 19c4a0c

Browse files
committed
readme updated
1 parent 15d1f60 commit 19c4a0c

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

README.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,36 +31,28 @@ Backend development involves building the server-side logic of web applications.
3131
1. **Install Node.js and npm**: Download and install Node.js, which includes npm (Node Package Manager) [2].
3232

3333
```
34-
node -v
35-
npm -v
34+
node -v
35+
npm -v
3636
```
3737

3838
02. **Create a Project Folder**:
3939

4040

4141

42-
```
43-
42+
```powershell
4443
mkdir my-node-project
4544
cd my-node-project
46-
4745
```
4846

4947
3. **Initialize Your Project**:
5048

51-
```
49+
`npm init`
5250

53-
npm init
54-
```
55-
56-
This creates a `package.json` file to manage dependencies [2].
51+
This creates a `package.json` file to manage dependencies [2].
5752

5853
4. **Install Express.js**:
5954

60-
```
61-
62-
npm install express
63-
```
55+
`npm install express`
6456

6557
A basic folder structure includes:
6658

0 commit comments

Comments
 (0)