File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ Backend development involves building the server-side logic of web applications.
3939
4040
4141
42- ````
42+ ```
4343
4444mkdir my-node-project
4545cd my-node-project
@@ -57,7 +57,7 @@ cd my-node-project
5757
58584. **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
84841 . ** 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
1091093 . ** 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
You can’t perform that action at this time.
0 commit comments