node.js 运行node app.js无反应

  • Post author:
  • Post category:其他


var http = require('http');
http.createServer(function (request,response) {
  response.writeHead(200,{"Content-Type":"text/html;charset='utf-8'"});
  response.write('this is node.js');
  response.end();
}).listen(3000);

这边运行node app.js 终端没有反应

这边运行node app.js 终端没有反应,其实已经运行成功了,可以直接访问地址。

在这里插入图片描述



版权声明:本文为qq_42483780原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。