作者:用户7kxpkjs2ol | 来源:互联网 | 2014-05-27 17:32
Node.js入门:HelloWorld马上开始我们第一个Node.js应用:“HelloWorld”。打开你的编辑器,创建一个hello.js文件。编写代码保存该文件,并通过Node.js来执行。
马上开始我们第一个Node.js应用:“Hello World”。打开你的编辑器,创建一个hello.js文件。编写代码保存该文件,并通过Node.js来执行。
1 console.log('hello, nodejs.') ;
1 var http = require("http");
2 http.createServer(function(request, response) {
3 response.writeHead(200, {"Content-Type": "text/html"});
4 response.write("Hello World!");
5 response.end();
6 }).listen(8000);
打开浏览器地址栏输入http://localhost:8000/,可以在网页上看到输出结果。