首页 > Web开发 > 详细

hello world for js and node.js

时间:2021-05-25 23:46:26      阅读:26      评论:0      收藏:0      [点我收藏+]

步骤

  • 安装node.js

  • 编写程序

目录结构

Project hello-world-project
   - run.bat
   - server.js

server.js

const http = require(‘http‘);

const hostname = ‘127.0.0.1‘;
const port = 3000;

const server = http.createServer((req, res) => {
  res.statusCode = 200;
  res.setHeader(‘Content-Type‘, ‘text/plain‘);
  res.end(‘Hello World‘);
});

server.listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

run.bat

REM run in node.js runtime
node server.js

点击run.bat,服务器程序启动;

打开浏览器,地址栏输入:" 127.0.0.1:3030 ",观察页面。

hello world for js and node.js

原文:https://www.cnblogs.com/1river/p/14810574.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!