node.js笔记(一)入门

sencha touch 和jquery终归是前端的东西,可以用它们做出漂亮的界面,却不能跟服务器很好的交互,而node.js就是为此而生

安装

过程不多说,主要讲遇到的express无法识别命令的问题,原因是新版本的node讲genrator分离了出去,完整的安装命令如下(在node安装目录下):
npm install express -gd (全局安装)
npm install -g express-generator(安装generator)

第一个界面

新建一个workpace,在这个workpace下安装express,
npm install express,
新建文件helloworld.js,代码如下:

var http = require("http");  
http.createServer(function(request, response) { 
    response.writeHead(200, {"Content-Type": "text/html"});  
    response.write("Hello World!");  
    response.end();  
}).listen(8080);  
console.log("Server running at http://localhost:8080/");  

保存后用命令行进入对应目录,运行

node helloworld.js

运行成功后就可以在浏览器的8080端口看到输出结果

你可能感兴趣的:(node.js)