https://github.com/hash-bang/monoxide
A less poisonous way to work with Mongo
https://github.com/hash-bang/monoxide
Last synced: about 1 month ago
JSON representation
A less poisonous way to work with Mongo
- Host: GitHub
- URL: https://github.com/hash-bang/monoxide
- Owner: hash-bang
- License: mit
- Created: 2015-02-09T00:11:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T23:29:40.000Z (3 months ago)
- Last Synced: 2025-04-14T02:28:06.697Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 553 KB
- Stars: 6
- Watchers: 4
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Monoxide
=========
A less poisonous to work with Mongo.Monoxide attempts to provide nicer, chainable functionality on top of base Mongo while making some of the more C centric designs of Mongo more Node like.
**NOTE: While Monoxide is now mostly stable there are still likely to be bugs. Please report these to the author if found**
1. [API documentation](API.md)
2. [ReST server](#rest-server)
3. [Example setups](examples/)
4. [Common recipes and design patterns](RECIPES.md)
4. [TODO list](TODO.md)
5. [Future ideas](IDEAS.md)
6. [Common issues](COMMON-ISSUES.md)Key differences from Mongoose / MongoDB-Core:
* **ReST server** - Provides an out-of-the-box [Express middleware](#rest-server)
* **Syntax** - Returns a nicer syntax for [specifying schemas](#schema-setup)
* **Query parameters as arrays** - Sort + Populate functionality can now be specified as an array rather than only as space delimited strings
* **Plain objects** - All documents are accessible as plain JavaScript objects
* **Virtuals** - Virtuals are handled locally (not on the database)
* **Methods** - Methods are handled locally (again not on the database)
* **Hooks** - Hooks (i.e. Mongoose `pre`, `post` calls) **actually work as they should**. Hooks like all the above are local and not fired at the database level
* **OIDs / ObjectIDs** - All pointers (or `mongoose.Types.ObjectId` as Mongoose refers to them) are **strings**. Comparison is simple string comparison, there is no need to call `.toString()` on each object. The function still exists if you want an entirely plain object sans all the *glued* functions like `save()`
* Schemas get applied on each document retrieval. Changing the schema of your project no longer leads to documents having 'the old version'. New fields added to the schema *after* document creation will be applied to older documents.
* **ReST field surpression** - By default all fields prefixed with `_` (excepting `_id` and `__v`) are removed from ReST server output. This can be changed by adjusting the `omitFields` setting for `monoxide.express.(middleware|query|get`.
* **Document mapping** - Each output document can be run though the `map` function to decorate it before it leaves the server - this is useful to omit complex things the client doesn't need or otherwise glue information to the document.
* **Callback error if no matching records** - If no matching records are found in a `get()` operation and `$errNotFound` is true (the default) Monoxide will populate the error property of the callback. This is useful to automatically abandon Async chains when an expected record is not found rather than having to do manual check for record existence later.
* **Pass private data using `$data`** - The `$data` object can be specified in any operation (query, save, delete etc.) and is ignored by Monoxide but still passed into hooks. This can be used as a method to pass data to lower-level functions such as logging operations (e.g. pass the currently logged in user to the lower level hooks)
* **Meta polling** - Access database meta information using either the `meta()` method or the ReST adapter
* **Version management** - Created documents correctly set the `__v` property and increment it on save
* **DEBUG compatibility** - Setting the environment variable `DEBUG=monoxide:*` will output internal processes of Monoxide to the consoleSee the [ideas list](ideas.md) for future ideas.
Schema Setup
============
Monoxide supports setting the `type` property via a string instead of using pointers to types within the `mongoose.Types` structure. Its also really easy to add methods, statics and virtuals using chainable syntax.```javascript
var Users = monoxide
.schema('users', {
name: String,
role: {type: String, enum: ['user', 'admin'], default: 'user'},
favourite: {type: 'pointer', ref: 'widgets'},
items: [{type: 'pointer', ref: 'widgets'}],
mostPurchased: [{
number: {type: 'number', default: 0},
item: {type: 'pointer', ref: 'widgets'},
}],
})
.static('countByType', function(type, next) { // Adds User.countByType(TYPE, callback) as a model method
Users.count({
$collection: 'users',
role: type,
}, next);
})
.method('splitNames', function() { // Adds UserDocument.splitNames() as a method
return this.name.split(/\s+/);
})
.virtual('password', function() { return 'RESTRICTED' }, function(pass) { // Adds a password handling virtual
// Replace this with your own impressive password hashing kung-fu
this._password = pass;
})
.hook('save', function(next, doc) { // Adds a hook for when a document is saved (must fire callback to accept changes)
console.log('User', doc._id, 'has been modified');
next();
})
```Note that the awkward `mongoose.Schema.ObjectId` type is replaced with the nicer `'pointer'` type specified as a string. All other types can be similarly specified (e.g. `"number"`, `"string"` etc.).
Schemas are also automatically compiled and returned as an object from `monoxide.schema` without any need to perform additional actions on the schema before its usable. Functions that declare additional operations such as virtuals, statics, methods, hooks etc can be added and removed at any time without recompiling the object.
ReST Server
===========
The primary interface to Monoxide is the ReST server interface for Express:```javascript
var express = require('express');
var monoxide = require('monoxide');var app = express();
app.use('/api/users/:id?', monoxide.express.middleware({
collection: 'users',get: true, // Allow retrieval by ID
query: true, // Allow retrieval of multiple records as a query
count: true, // Allow record counting via query
create: false, // Alow record creation via POST / PUT
save: false, // Allow saving via POST / PATCH
delete: false, // Allow record deletion via DELETE
meta: false, // Allow retrieval of collection meta information// ... other options here ... //
}));
```OR you can also bring in only the specific Express middleware thats required:
```javascript
var express = require('express');
var monoxide = require('monoxide');var app = express();
app.use('/api/doodads/:id?', monoxide.express.middleware('doodads'));
app.use('/api/widgets/:id?', monoxide.express.middleware('widgets'));
```You can also secure the various methods by passing in middleware:
```javascript
app.use('/api/users/:id?', monoxide.express.middleware('users', {
get: true, // Allow retrieval by ID
create: false, // Dont allow record creation
query: false, // Dont allow querying of users (direct ID addressing is ok though)
count: false, // Disable countingquery: true, // Allow retrieval of multiple records as a query
save: function(req, res, next) {
// User must be logged in AND be either the right user OR an admin to save user info
if (
(req.user && req.user._id) && // Logged in AND
(
req.user._id == req.user._id || // Is the same user thats being saved (saving own profile) OR
req.user.role == 'admin' // User is an admin
)
) return next();
return res.status(403).send('Not logged in').end();
},delete: function(req, res, next) {
// Only allow delete if the query contains 'force' as a string
if (req.query.force && req.query.force === 'confirm') return next();
return res.status(403).send('Nope!').end();
},
}));
```**NOTES:**
* Sort keys prefixed with `-` are inverted. For example `sort=-name` means 'sort by names in reverse order'
* Multiple query keys are automatically converted into arrays as a '$in' query type. For example `key=val1&key=val2` becomes `key={$in:[val1,val2]}`. If you do not want this behaviour disable `shorthandArrays` in the ReST options.Cherry-picking middleware
-------------------------
You can also pick-and-choose the handlers to be used:```javascript
var express = require('express');
var monoxide = require('monoxide');var app = express();
app.get('/api/users', monoxide.express.query('users'));
app.get('/api/users/count', monoxide.express.count('users'));
app.meta('/api/users/meta', monoxide.express.meta('users'));
app.get('/api/users/:id', monoxide.express.get('users'));
app.post('/api/users', monoxide.express.create('users'));
app.post('/api/users/:id', monoxide.express.save('users'));
app.delete('/api/users/:id', monoxide.express.delete('users'));
```In the above the specified models are bound to their respective ReST end points (`GET /api/users` will return all users for example).
API
===
Below is the quick-reference API. For more detailed docs see the [API documentation](API.md) for the generated JSDoc output.Document creation
-----------------
Create a new document.```javascript
monoxide.create([data], [callback])
monoxide.models.MODEL.create([data], [callback])
``````javascript
monoxide.create({
$collection: 'widgets',
name: 'My new widget',
}, function(err, widget) { // ... // });monoxide.models.widgets.create({
name: 'My new widget',
}, function(err, widget) {
// widget = newly created document
});
```In addition to regular document key/values the `data` object can also contain the following meta keys:
| Key | Type | Default | Description |
|---------------|---------|---------|------------------------------------------------------------------------|
| `$collection` | String | `null` | The collection to create the document in |
| `$refetch` | Boolean | `true` | Whether to refetch the document from the database again after creation |See the [create test scripts](test/create.js) for more complex examples.
Document finding (single)
-------------------------
Find one document.```javascript
monoxide.get([query], [callback])
monoxide.models.MODEL.findOne([data], [callback])
```Document finding (multiple)
---------------------------
Find multiple documents.```javascript
monoxide.query([query], [callback])
monoxide.models.MODEL.find([query], [callback])
```Document counting
-----------------
Count documents.```javascript
monoxide.count([query], [callback])
monoxide.models.MODEL.count([query], [callback])
```Document saving (one)
---------------------
Save data to an existing document.```javascript
monoxide.save([data], [callback])
monoxide.models.MODEL.save([data], [callback])
```Document saving (multiple)
--------------------------
Save data to multiple existing documents.```javascript
monoxide.update([data], [callback])
monoxide.models.MODEL.update([data], [callback])
```Document deletion
-----------------
Delete documents in a collection by an optional query.```javascript
monoxide.delete([query], [callback])
monoxide.models.MODEL.delete([query], [callback])
document.delete([callback])monoxide.remove([query], [callback])
monoxide.models.MODEL.remove([query], [callback])
document.remove([callback])
``````javascript
// Delete a specific document by its ID
monoxide.delete({
$collection: 'widgets',
$id: someID,
});// Delete a specific document by its ID
monoxide.models.widgets.remove({
$id: someID,
});// Delete all documents in the collection where color='blue'
monoxide.delete({
$collection: 'widgets',
$multiple: true,
color: 'blue',
});// Delete all documents in the collection
monoxide.models.widgets.delete();
```**Notes:**
* Deleting by an empty query (or not specifying the query at all, e.g. `monoxide.model.delete()`) will throw an error if the `monoxide.settings.removeAll` flag is true to allow nuking an entire collection.
* `delete` and `remove` functions are interchangable, the other is just provided for convenienceHooks
-----
Hooks allow watching of models. Each Hook within monoxide accepts a callback that must be triggered for execution to continue.```javascript
monoxide.models.MODEL.hook('create', function(next, query) { // ... // });
monoxide.models.MODEL.hook('postCreate', function(next, query, newDoc) { // ... // });monoxide.models.MODEL.hook('query', function(next, query) { // ... // });
monoxide.models.MODEL.hook('save', function(next, query) { // ... // });
monoxide.models.MODEL.hook('postSave', function(next, query, newDoc) { // ... // });monoxide.models.MODEL.hook('update', function(next, query) { // ... // });
monoxide.models.MODEL.hook('delete', function(next, query) { // ... // });
monoxide.models.MODEL.hook('postDelete', function(next, query) { // ... // });
```**Notes:**
* For post* hooks the `newDoc` parameter will only return the newly created document if `$refetch=true` within the create or save query. Query will always be present.