Getting-started: Setup Database for Node.js

前端 未结 4 992
终归单人心
终归单人心 2021-01-29 17:07

I am new to node.js but am excited to try it out. I am using Express as a web framework, and Jade as a template engine. Both were easy to get setup following this tutorial from

4条回答
  •  我在风中等你
    2021-01-29 18:01

    Express authentication using Redis for session store and Couchdb for database using coffeescript..

    Check this gist: https://gist.github.com/652819

    I use this template for most of my projects. You can implement a similar mongodb version of it too using:

    node-mongodb-native by christkv : https://github.com/christkv/node-mongodb-native, or

    mongoose : https://github.com/learnboost/mongoose, or

    amark's mongous: https://github.com/amark/mongous

提交回复
热议问题