Node.js 创建第一个应用
2021-04-10 15:25
标签:log server 应用 lis 浏览器 col ons text img 我们可以使用以下命令来查看当前的 Node 版本: 接下来创建我的第一个node.js应用 server.js 使用 node 命令执行以上的代码: 浏览器上的页面 Node.js 创建第一个应用 标签:log server 应用 lis 浏览器 col ons text img 原文地址:https://www.cnblogs.com/chenyingying0/p/12427515.htmlnode -v
var http=require("http");//引入http模块
//创建服务器
http.createServer(function(request,response){
//发送http头,状态200:ok,类型:text/plain
response.writeHead(200,{"Content-Type":"text/plain"});
//发送响应数据
response.end("hello cyy");
}).listen(8888);//监听8888端口
console.log("look at localhost:8888");