[Node.js] - About Node.js
Thursday, April 12, 2018
Documents:
- https://nodejs.org/api/documentation.html
Table of content
I - Usage and example
I. Usage and example
We can easy deploy a server side by NodeJS as below:
==
hello-project.js
const http = require('http');
const hostname = '127.0.0.1';
const port = 3000;
const server = http.createServer((req, res) => {
res.statusCode = 200;
res.setHeader('Content-Type', 'text/plain');
res.end('Hello World!\n');
});
server.listen(port, hostname, () => {
console.log(`Server running at http://${hostname}:${port}/`);
});
==
Results:
This is updating...
Bài liên quan
Comments[ 0 ]
Post a Comment