Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
npm install jammin
Note: Jammin is still in development. The API is not stable.
Jammin is the fastest way to build REST APIs in NodeJS. It consists of:
Jammin is built for Express and is fully extensible via middleware to support things like authentication, sanitization, and resource ownership.
In addition to performing database CRUD, Jammin can bridge function calls over HTTP. If you have a node module that communicates via JSON-serializable data, Jammin allows you to require()
that module from a remote NodeJS client. See the Modules section for an example.
Jammin can also serve a Swagger specification, allowing your API to link into tools like Swagger UI and LucyBot
Use API.define()
to create Mongoose models. You can attach HTTP routes to each model that will use req.params
and req.query
to query the database and req.body
to update it.
var App = require('express')();
var Jammin = require('jammin');
var API = new Jammin.API('mongodb://<username>:<password>@<mongodb_host>');
var PetSchema = {
name: String,
age: Number
};
API.define('Pet', PetSchema);
API.Pet.get('/pets/:name');
API.Pet.post('/pets');
App.use('/v0', API.router);
App.listen(3000);
> curl -X POST $HOST/v0/pets -d '{"name": "Lucy", "age": 2}'
{"success": true}
> curl $HOST/v0/pets/Lucy
{"name": "Lucy", "age": 2}
Use API.module()
to automatically pass req.query
and req.body
as arguments to a pre-defined set of functions.
This example exposes filesystem operations to the API client.
var App = require('express')();
var Jammin = require('jammin');
var API = new Jammin.API();
API.module('/files', {module: require('fs'), async: true});
App.use('/v0', API.router);
App.listen(3000);
> curl -X POST $HOST/v0/files/writeFile?path=hello.txt -d {"data": "Hello World!"}
> curl -X POST $HOST/v0/files/readFile?path=hello.txt
Hello World!
Use Jammin.Client()
to create a client of the remote module.
var RemoteFS = new Jammin.Client({
module: require('fs'),
basePath: '/files',
host: 'http://127.0.0.1:3000',
});
RemoteFS.writeFile('foo.txt', 'Hello World!', function(err) {
RemoteFS.readFile('foo.txt', function(err, contents) {
console.log(contents); // Hello World!
});
});
GET
get()
will use req.params
and req.query
to find an item or array of items in the database.
API.Pet.get('/pet/:name');
API.Pet.getMany('/pets')
POST
post()
will use req.body
to create a new item or set of items in the database.
API.Pet.post('/pets');
API.Pet.postMany('/pets');
PATCH
patch()
will use req.params
and req.query
to find an item or set of items in the database, and use req.body
to update those items.
API.Pet.patch('/pets/:name');
API.Pet.patchMany('/pets');
PUT
put()
will use req.params
and req.query
to find an item or set of items in the database, and use req.body
to update those items, or create a new item if none exists
API.Pet.put('/pets/:name');
API.Pet.putMany('/pets');
DELETE
delete()
will use req.params
and req.query
to remove an item or set of items from the database
API.Pet.delete('/pets/:name');
API.Pet.deleteMany('/pets');
See the documentation for Mongoose Schemas for the full set of features.
var PetSchema = {
name: {type: String, required: true}
}
var UserSchema = {
username: String,
password_hash: {type: String, select: false}
}
Jammin allows you to expose arbitrary functions as API endpoints. For example, we can give API clients access to the filesystem.
API.module('/files', {module: require('fs'), async: true})
Jammin will expose top-level functions in the module as POST requests. Arguments can be passed in-order as a JSON array in the POST body. Jammin also parses the function's toString() to get parameter names, allowing arguments to be passed via a JSON object in the POST body (using the parameter names as keys). Strings can also be passed in as query parameters.
All three of the following calls are equivalent:
> curl -X POST $HOST/files?path=foo.txt&data=hello
> curl -X POST $HOST/files -d '{"path": "foo.txt", "data": "hello"}'
> curl -X POST $HOST/files -d '["foo.txt", "hello"]'
See the Middleware section below for an example of how to more safely expose fs
Jammin also provides clients for exposed modules. This allows you to bridge function calls over HTTP, effectively allowing you to require()
modules from a remote client.
This allows you to quickly containerize node modules that communicate via JSON-serializable data, e.g. to place a particularly expensive operation behind a load balancer, or to run potentially malicious code inside a sandboxed container.
var RemoteFS = new Jammin.Client({
module: require('fs'),
basePath: '/files',
host: 'http://127.0.0.1:3000',
});
You can use middleware to intercept database calls, alter the request, perform authentication, etc.
Change req.jammin.query
to alter how Jammin selects items from the database (GET, PATCH, PUT, DELETE).
Change req.jammin.document
to alter the document Jammin will insert into the database (POST, PATCH, PUT).
Change req.jammin.method
to alter how Jammin interacts with the database.
Change req.jammin.arguments
to alter function calls made to modules.
The example below alters req.query
to construct a complex Mongo query from user inputs.
API.Pet.getMany('/search/pets', function(req, res, next) {
req.jammin.query = {
name: { "$regex": new RegExp(req.query.q) }
};
next();
});
A more complex example achieves lazy deletion:
API.router.use('/pets', function(req, res, next) {
if (req.method === 'DELETE') {
req.jammin.method = 'PATCH';
req.jammin.document = {deleted: true};
} else if (req.method === 'GET') {
req.jammin.query.deleted = {"$ne": true};
} else if (req.method === 'POST' || req.method === 'PUT') {
req.jammin.document.deleted = false;
}
next();
}
Or resource ownership:
var setOwnership = function(req, res, next) {
req.jammin.document.owner = req.user.username;
next();
}
var ownersOnly = function(req, res, next) {
req.jammin.query.owner = {"$eq": req.user.username};
next();
}
API.Pets.get('/pets');
API.Pets.post('/pets', setOwnership);
API.Pets.patch('/pets/:id', ownersOnly);
API.Pets.delete('/pets/:id', ownersOnly);
You can also use middleware to alter calls to module functions. This function sanitizes calls to fs:
API.module('/files', {module: require('fs'), async: true}, function(req, res, next) {
if (req.path.indexOf('Sync') !== -1) return res.status(400).send("Synchronous functions not allowed");
// Remove path traversals
req.jammin.arguments[0] = Path.join('/', req.jammin.arguments[0]);
// Make sure all operations are inside __dirname/user_files
req.jammin.arguments[0] = Path.join(__dirname, 'user_files', req.jammin.arguments[0]);
next();
});
Serve a Swagger specification for your API at the specified path. You can use this to document your API via Swagger UI or a LucyBot portal
API.swagger('/swagger.json');
Jammin will automatically fill out most of your spec, but you can provide additional information:
var API = new Jammin.API({
databaseURL: DatabaseURL,
swagger: {
info: {title: 'Pet Store'},
host: 'api.example.com',
basePath: '/api'
}
});
See the example Petstore Server for other examples.
FAQs
REST API Generator using Express and Mongoose
The npm package jammin receives a total of 6 weekly downloads. As such, jammin popularity was classified as not popular.
We found that jammin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.