Skip to content

Commit 32edcc0

Browse files
Update README.md
1 parent c333c45 commit 32edcc0

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,16 @@ ExpressJs use to build the Node Application, it make faster the devlopment and p
133133

134134
2. Tag of express Js is well suited "Fast, unopinionated, minimalist web framework for Node.js"<br />
135135

136-
3. install express by <br />
136+
3. Install express by below command.<br />
137+
137138
```ruby
138139
npm install express --save
139140
```
140141

141142

142143
4. You can see the below code, previously when we have checked for http, it took many line of code to see in browser.<br />
143-
// you can get same code on expressjs website. <br /><br />
144+
- you can get same code on expressjs website. <br /><br />
145+
144146
```ruby
145147
const ex = require("express");<br />
146148
const app = ex();<br /><br />
@@ -157,7 +159,7 @@ Which is easier to interagte with application.<br /><br />
157159
- You can see how to handle the routing using the express JS like get/post<br />
158160
- you can see below for more details about routing.<br />
159161
>https://expressjs.com/en/starter/basic-routing.html
160-
<br/>
162+
161163
```ruby
162164
<h3>Index.js </h3>
163165

0 commit comments

Comments
 (0)