在线时间:8:00-16:00
132-9538-2358
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
第一个服务器的例子就从 “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程序执行:
example.js
> node example.js Server running at http://127.0.0.1:8124/
在该Node.js官方文档中的所有的例子都可以使用上述方法执行。
评论
请发表评论