Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
RESTful API generator for Express and Mongoose. Nerm maps routes directly to your mongoose models.
Nerm came about because we needed a light weight API generator. Nerm's feature set is small but useful. If you need a more full featured generator, check out Express Restify Mongoose.
npm install nerm
var Nerm = require('nerm')
var mongoose = require('mongoose')
mongoose.connect('mongodb://localhost')
var Schema = new mongoose.Schema({
name: String,
location: String
})
var User = mongoose.model('User', Schema)
Nerm.route(app, User)
GET /api/v0/users
POST /api/v0/users
GET /api/v0/users/ffffffffffffb00000000001
PUT /api/v0/users/ffffffffffffb00000000001
DELETE /api/v0/users/ffffffffffffb00000000001
Queries in GET requests are made by passing a mongo query as a JSON string. To make a Regexp query, use the $like operator.
var q = JSON.stringify({location: 'New York', $like: {name: 'john'}})
request.get('/api/v0/users?q=' + q)
// Translates to {location: 'New York', name: /john/i}
GET requests can also be given sort, select, and populate options.
request.get('/api/v0/users?select=name&sort=-name')
// Will return objects without location info and sorted by name in descending order
Middleware can be provided in order to restrict access to routes
//This will restrict access to a individual user unless that user makes the request
Nerm.app.route(app, User, {
middleware: function(req, res, next) {
if (req.params.id && req.params.id !== req.user._id)
res.status(401).send("Unauthorized")
else
next()
}
})
Schemas can be decorated with a private option.
var Schema = new mongoose.Schema({
name: String,
location: {type: String, nerm: {private: true}}
})
var User = mongoose.model('User', Schema)
Nerm.route(app, User, {
privateAccess: function(req) { return req.user.admin }
})
// This will not allow nonadmins to filter or modify location,
// and will not return location fields in the responses.
Schemas can be decorated with a readOnly option.
var Schema = new mongoose.Schema({
name: String,
location: {type: String, nerm: {readOnly: true}}
})
var User = mongoose.model('User', Schema)
Nerm.route(app, User, {
writeAccess: function(req) { return req.user.admin }
})
// This will allow location to be filtered, but not modified by nonadmins
Sometimes a resource needs to be further restricted. To do that pass a scope function or literal. The function can be syncronous or asyncronous.
Nerm.route(app, User, {
scope: {location: 'New York'}
})
Nerm.route(app, User, {
scope: function(req) { return {location: req.user.location }}
})
Nerm.route(app, User, {
scope: function(req, cb) { cb({location: req.user.location})}
})
// Callers will only be able to retrieve other users in their location.
Default options can be provided by calling Nerm.defaults, these will apply to all routes not given their own options
Nerm.defaults({
privateAccess: function() { return false; }
})
Nerm.route(app, User) //No callers will have access to private fields now
FAQs
A route generator to match your models, yeah!
The npm package nerm receives a total of 0 weekly downloads. As such, nerm popularity was classified as not popular.
We found that nerm demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.