1 | # monogram
|
2 |
|
3 | Action-based anti-ODM for MongoDB and Node.js
|
4 |
|
5 | Read the [intro blog post here](http://thecodebarbarian.com/introducing-monogram-the-anti-odm-for-mongodb-nodejs.html).
|
6 |
|
7 | ## Usage
|
8 |
|
9 | ```javascript
|
10 | const { connect } = require('monogram');
|
11 | const db = await connect('mongodb://localhost:27017/test');
|
12 | ```
|