var MongoDB = require('backbone-db-mongodb');
var Model = require('backbone-promises').Model;
var store = new MongoDB(mongoClient);
var MyModel = Model.extend({
db: store,
sync: store.sync,
mongo_collection: 'mymodels'
});
var a = new MyModel({id:"1", "data":123});
a.save().then(function() {
var b = new Model({id:1});
return b.fetch().then(function() {
console.log(a.get("data"),b.get("data"));
});
}).otherwise(console.error.bind(console));-
Notifications
You must be signed in to change notification settings - Fork 1
backbone-db driver for MongoDB
License
Everyplay/backbone-db-mongodb
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
About
backbone-db driver for MongoDB
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published
