Skip to content

Commit 15d1f60

Browse files
committed
readme updated
1 parent b623763 commit 15d1f60

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Backend development involves building the server-side logic of web applications.
3939

4040

4141

42-
````
42+
```
4343
4444
mkdir my-node-project
4545
cd my-node-project
@@ -57,7 +57,7 @@ cd my-node-project
5757
5858
4. **Install Express.js**:
5959
60-
`````
60+
```
6161

6262
npm install express
6363
```
@@ -83,7 +83,7 @@ _Express.js_ is a framework that simplifies building Node.js backend application
8383

8484
1. **Create `server.js`**: The entry point of your application [1].
8585

86-
````javascript
86+
```javascript
8787
const express = require('express');
8888
const app = express();
8989

@@ -101,14 +101,14 @@ _Express.js_ is a framework that simplifies building Node.js backend application
101101

102102

103103

104-
`````
104+
```
105105

106106
node server.js
107107
```
108108

109109
3. **Define Routes**: How your server responds to different URL requests [2].
110110

111-
````javascript
111+
```javascript
112112
app.get('/about', (req, res) => {
113113
res.send('This is the about page');
114114
});
@@ -122,7 +122,7 @@ _Express.js_ is a framework that simplifies building Node.js backend application
122122

123123

124124

125-
````
125+
```
126126

127127
npm install -g nodemon
128128
nodemon server.js

0 commit comments

Comments
 (0)