Skip to content

Commit fb7cf89

Browse files
Update README.md
1 parent b730eb4 commit fb7cf89

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ write ```console.log("Hello world")``` in index.js.
4545
> node index.
4646
you will get the output in terminal.
4747

48-
# Day 2 : Function Type
48+
## Day 2 : Function Type
4949
Lets move to day two when we will see the function type. its just basic of Java ECMA6 how we will define it.
5050
1. Define Objects.
5151

@@ -83,7 +83,7 @@ var v = (a , b) =>
8383
v(2,3);
8484
```
8585

86-
# Day 3 - Global Object
86+
## Day 3 - Global Object
8787
In NodeJs Global Object, Object which we can be access by any modules.
8888

8989
We do not need to include these objects in our application, rather we can use them directly
@@ -125,7 +125,7 @@ Some other global object are
125125
- //Reports
126126
- //Process
127127

128-
# Day 10 - ExpressJs
128+
## Day 10 - ExpressJs
129129

130130
ExpressJs use to build the Node Application, it make faster the devlopment and provide inbuild code for development.<br /><br />
131131

@@ -177,7 +177,7 @@ app.post('/Books/NewBook', (req, res) => { res.send('Book selves'); })<br /><br
177177
app.listen("4000", () => console.log("Server is running on port 4000"));<br />
178178
```
179179

180-
# Day 11 - Express App Generator
180+
## Day 11 - Express App Generator
181181

182182
1. Expression App generator is not directly working for me to Install from Terminal of Visual Studio Code.
183183

@@ -251,7 +251,7 @@ you can see it in browser as.
251251
<img src="https://github.com/getmscode2013/NodeJsTutorial/blob/master/day11-ExpressAppGenerator/screen.png">
252252
253253
254-
# Day 12 - Expressjs Inclusing Static Files
254+
## Day 12 - Expressjs Inclusing Static Files
255255
256256
1. While creating the application we need to include many Static files like Images, CSS , JS etc.
257257
@@ -317,7 +317,7 @@ app.listen("4000", () => console.log("Server is running on port 4000"));
317317
318318
319319
320-
# Day 13 - Basic Routing
320+
## Day 13 - Basic Routing
321321
322322
1. Go to the Day 10 before this
323323
2. There you will get the basic idea how to install express by what is expressJS.

0 commit comments

Comments
 (0)