[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
- [Wordpress] - WooCommerce Plugin
- [Aruba] - Setting Aruba IAP 225
- [React Native] - Realm Database
- [Report] - Jasper Report & Oracle BI Publisher
- [AWS] - FULL Amazon Web Service
- SSL/TLS - Secure Sockets Layer/Transport Layer Security
- [WAS] - Tomcat, Glassfish
- [ExtJS] A->Z
- [Javascript/Jquery/CSS] - A->Z
- [AJAX, JQUERY] - AJAX & JQUERY Collection
- Eclipse A-Z
- Apache Kafka
Comments[ 0 ]
Post a Comment