如何用nodeJS搭建一个bookstores项目的服务器
我现在启动bookstores是直接在火狐打开的,想知道如何用node来自己搭建一个服务来启动。
我知道node搭建服务如下
var http = require('http');
http.createServer(function(req, res){
res.writeHead(200,{'Content-Type':'utf-8'})
res.write('Hello Nodejs!!!!')
res.end();
})
.listen(2015);
console.log('listenning...');
但是不知道跟bookstores项目一起时是用法是怎样的,希望知道的伙伴能指导下,最好有详细的过程,不尽感激!!