nodelog - Node.js 博客系统
jopen
9年前
使用 nodejs+express+ejs+mongodb 开发的多人博客系统。
1、下载代码
2、安装nodejs以及相关
sudo apt-get install nodejs
sudo apt-get install npm
npm --registry=http://r.cnpmjs.org install forever -g
npm --registry=http://r.cnpmjs.org install supervisor -g
npm --registry=http://r.cnpmjs.org install express-generator@4 -g
3、安装mongodb
4、启动mongodb
mongod --fork --dbpath=/usr/local/mongodb/data --logpath /usr/local/mongodb/log/mongodb.log --logappend
5、运行nodelog
supervisor app.js或者forever start app.js