小码哥的IT人生

首页 > JS > nodejs

Node.js 示例

nodejs 2022-05-10 16:53:36小码哥的IT人生shichen

第一个服务器的例子就从 “Hello World” 开始:

var http = require('http');
http.createServer(function (request, response) {
  response.writeHead(200, {'Content-Type': 'text/plain'});
  response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');

把代码拷贝到example.js文件里,使用node程序执行:

> node example.js
Server running at http://127.0.0.1:8124/

在该Node.js官方文档中的所有的例子都可以使用上述方法执行。

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024