fix(guide): Fix all frontmatter

This commit is contained in:
Bouncey
2018-10-19 13:53:51 +01:00
committed by Stuart Taylor
parent 569bd7c3a7
commit 6d511c558a
146 changed files with 926 additions and 1469 deletions

View File

@ -1,3 +1,6 @@
---
title: HTTP
---
## HTTP
Node.js has a set of built-in modules which you can use without any further installation. Similarly **HTTP module** contains a set of functions which are required to transfer data over the Hyper Text Transfer Protocol (HTTP).
@ -27,7 +30,7 @@ http.createServer((req, res) => {
console.log("Server is listening on port no : 8000");
```
### Steps for execution :
### Steps for execution :
* You should have Node.js installed in your computer.
* Create a file *app.js* and paste the above code.