npm.io
0.0.14 • Published 1 month ago

objy-mapper-mongodb

Licence
MIT
Version
0.0.14
Deps
1
Size
16 kB
Vulns
3
Weekly
0

OBJY storage mapper for mongodb

Installing

npm install objy-mapper-mongodb

Example

Let's create an Object Family that uses the mapper:

const MongoMapper = require('objy-mapper-monodb');

// Define an object family
OBJY.define({
   name : "Object",
   pluralName: "Objects",
   storage: new MongoMapper().connect('mongodb://localhost'),
})

// Use the object family's constructor
OBJY.Object({name: "Hello World"}).add(function(data)
{
   console.log(data);
})

License

This project itself is licensed under the MIT License.