举报投诉联系我们 手机版 热门标签 鳄鱼CMS
您的位置:鳄鱼CMS > node .js Node.js 示例

node .js Node.js 示例

2023-03-30 16:31 Node.js教程

node .js Node.js 示例

node .js Node.js 示例

node .js

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

var http = require("http");

http.createServer(function (request, response) {
  response.writeHead(200, {"Content-Type": "text/plain"});
  response.end("Hello Worldn");
}).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官方文档中的所有的例子都可以使用上述方法执行。


阅读全文
以上是鳄鱼CMS为你收集整理的node .js Node.js 示例全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 鳄鱼CMS eyucms.com 版权所有 联系我们