第一步 下载nodejs
访问https://nodejs.org/en/download/url
根据您的系统是32位或64位,按照文字说明进行下载
第二步 安装nodejs
双击运行nodejs的安装包,并指定到一个nodejs目录
第三步 调试nodejs安装是否成功
我们在任何目录新建一个hello.js
键入以下内容:
var http = require("http");
http.createServer(function(request,response){
response.writeHead(200, {
"Content-Type" : "text/plain"
});
response.write("Hello World!");
}).listen(8888);
然后打开控制台,在控制台中进行hello.js的目录,
运行node hello.js
再打开浏览器,就可以看到Hello World!了
文章为作者原创,转载请注册出处 http://www.zizhusoft.com/note/show.aspx?id=e8f2ac7e-0e27-49b2-8802-3e97d9034f42 ,谢谢