var http = require("http"); http.createServer(function(request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); response.write("Hello World"); response.end(); }).listen(8000); console.log(‘server is runing at http://127.0.0.1:8000‘);
记录一下安装过程:
到这里就算配置完成了,在D盘新建一个nodejs文件夹,在这个文件夹下创建一个helloworld.js文件添加上面的js内容
下一步点击系统的开始菜单运行 cmd命令:
d: D:\> cd nodejs D:\>nodejs>node helloworld.js
然后出现:Server running at http://127.0.0.1:8000/ 就是成功了
最后在浏览器里打开http://127.0.0.1:8000/
转自:http://iw3c.com/archive/my-first-nodejs-code-helloworld/
原文地址:http://www.cnblogs.com/zhangwei595806165/p/3792342.html