概要:用一个最简单是例子感受一下node.js 的能力
1.代码
var http = require("http")
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8081);
console.log('Server running at http://127.0.0.1:8081/');
2.运行结果
2.1 node t.js
1.2 http://127.0.0.1:8081
文章来源地址https://www.toymoban.com/news/detail-670736.html文章来源:https://www.toymoban.com/news/detail-670736.html
到了这里,关于node.js 简单实验 创建一个简单的web服务的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!