本文共 431 字,大约阅读时间需要 1 分钟。
下载Node.js,官方网址:
可根据根据自己的电脑配置来下载相当于的Node.js下载完成后使用Windows键+R 输入cmd 输入 Node.js,输入1+1是否出现=2,当出现,那么你Node.Js就安装成功了然后在Visual Studio Code测试代码
var http=require('http');
http.createServer(function(req,res){ res.writeHead(200,{'Content-Type':'text/html;charset=utf-8'});res.end('我在用Node.JS写程序');}).listen(3000,'127.0.0.2')console.log("Server running at ");最后在浏览器中访问http://127.0.0.2:3000 则显示
转载于:https://blog.51cto.com/13886532/2150205