nodejs + mongodb + angularjs

一个特别好的例子:todolist, 下载地址:
https://github.com/scotch-io/node-todo
这个最终做出来是这个样子:

nodejs + mongodb + angularjs_第1张图片
C9F9113E-10CF-4E9B-806C-5F6B540630AC.png

然后用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的时候且费了很多功夫呢。

  1. install nodejs网上教程很多,自己查;
  2. install mongodb:
    这个过程略显艰辛,记录如下:
    for mac users:
brew update
brew install mongodb
  1. 修改配置文件database.js:
module.exports = {
    remoteUrl : 'mongodb://node:[email protected]:27017/uwO3mypu',
    localUrl: 'mongodb://127.0.0.1:27017/'
    // localUrl: 'mongodb://localhost/meanstacktutorials'
};
  1. node server.js 运行就可以了

你可能感兴趣的:(nodejs + mongodb + angularjs)