28 September 2019

NodeJS Basic - HTTP Module

HTTP Module
Server port 4000
node.js
const http = require('http');

const server = http.createServer((req,res) => {
    res.write('Hello Http');
    res.end();
});

server.listen(4000);

console.log('Server start http://localhost:4000');
command: node node.js
Kết quả hiển thị trên browser: Hello Http

Head text/html
node.js
const http = require('http');

const server = http.createServer((req,res) => {
    res.writeHead(200 ,{
        'Content-Type': 'text/html'
    });
    res.write('<h1>Hello Http</h1>');
    res.end();
});

server.listen(4000);

console.log('Server start http://localhost:4000');
command: node node.js
Kết quả hiển thị trên browser:

Hello Http

Routing
node.js
const http = require('http');

const server = http.createServer((req,res) => {

    if (req.url == '/') {
        res.writeHead(200 ,{ 'Content-Type': 'text/html' });
        res.write('<html>This is home Page</html>');
        res.end();
    } else if (req.url == '/admin') {
        res.writeHead(200 ,{ 'Content-Type': 'text/html' });
        res.write('<html>This is admin Page</html>');
        res.end();
    } else if (req.url == '/student') {
        res.writeHead(200 ,{ 'Content-Type': 'text/html' });
        res.write('<html>This is student Page</html>');
        res.end();
    } else {
        res.end('Invalid request!');
    }
    
});

server.listen(4000);

console.log('Server start http://localhost:4000');
command: node node.js
http://localhost:4000/
Kết quả hiển thị trên browser: This is home Page
http://localhost:4000/admin
Kết quả hiển thị trên browser: This is home Page
http://localhost:4000/student
Kết quả hiển thị trên browser: This is student Page
http://localhost:4000/abcd
Kết quả hiển thị trên browser: Invalid request!

Related Posts:

  • NodeJS ExpressJS: MD5 password [EX-16] NPM Package MD5 /controller/user.controller.js 2018 const db = require('../db/index').lowDB; const ids = require('short-id'); const md5 = require('md5'); module.exports.index = function (req, res) { res.render('u… Read More
  • NodeJS ExpressJS: Environment Variables [EX-18] Environment Variables Cách 1: sử dụng module npm i dotenv /app.js app.js require('dotenv').config() console.log(process.env.SESSION_SECRET); const express = require('express') const app = express() const port = … Read More
  • NodeJS ExpressJS: signedCookies [EX-17] signedCookies (Giúp server phát hiện sự thay đổi của cookie phía client) /app.js app.js const express = require('express') const app = express() const port = 3000 const cookieParser = require('cookie-parser'); const us… Read More
  • NodeJS ExpressJS: Upload Files [EX-20] Upload Files /views/users/create.pug create.pug extends ../layouts/common.pug block content if errors each error in errors .m-auto.col-6.alert.alert-danger= error h1(class="text-center… Read More
  • NodeJS ExpressJS: Debug NodeJS [EX-19] Debug NodeJS Thêm --inspect để debug /package.json package.json { "name": "example", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "start": "nodemon --inspect app.js", "test… Read More

0 nhận xét:

Post a Comment

 

BACK TO TOP

Xuống cuối trang