A users CRUD app using Koa and DoQmentDB(the DocumentDB ODM Client)
- clone this project
- add config file in the
src/
directory, should look like that:
module.exports = {
HOST: 'https://your-application.documents.azure.com:443/',
OPTIONS: {
masterKey:'add-your-master-key-here'
},
DB: 'database-name' // e.g: `test`
};
$ node src/
$ npm test