我对学习 node.js 和 now.js 非常感兴趣。在尝试学习 node.js 时,我发现了这个http://expressjs.com。这是我应该学习的 node.js 的一部分还是类似于插件的东西?我们可以简单地使用这个创建服务器:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
那么有些人用那个快递?有什么区别 ?谢谢你。