Node.js 를 사용 하여 웹 서 비 스 를 빠르게 만 듭 니 다.

1590 단어 nodejs
절차 1.required 모듈 도입
var http = require("http");

단계 2.서버 생 성
var http = require('http');

http.createServer(function (request, response) {

    //    HTTP    
    // HTTP    : 200 : OK
    //     : text/plain
    response.writeHead(200, {'Content-Type': 'text/plain'});

    //        "Hello World"
    response.end('Hello World
'
); }).listen(8888); // console.log('Server running at http://127.0.0.1:8888/');

단계 3.브 라 우 저 요청 서버
브 라 우 저 접근 열기http://127.0.0.1:8888/
使用Node.js快速创建web服务_第1张图片

좋은 웹페이지 즐겨찾기