一个特别好的例子:todolist, 下载地址:
https://github.com/scotch-io/node-todo
这个最终做出来是这个样子:
然后用github下载还遇到了keychain的问题,最后解决方案:
Generating a new SSH key and adding it to the ssh-agent:
https://help.github.com/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent/
Recovering your ssh key passphrases:
https://help.github.com/articles/recovering-your-ssh-key-passphrase/
keychain这个问题还是很有意思的,在找keychain passphrase的时候且费了很多功夫呢。
- install nodejs网上教程很多,自己查;
- install mongodb:
这个过程略显艰辛,记录如下:
for mac users:
brew update
brew install mongodb
- 修改配置文件database.js:
module.exports = {
remoteUrl : 'mongodb://node:nodeuser@mongo.onmodulus.net:27017/uwO3mypu',
localUrl: 'mongodb://127.0.0.1:27017/'
// localUrl: 'mongodb://localhost/meanstacktutorials'
};
- node server.js 运行就可以了