express-api-helper
express-api-helper copied to clipboard
Simple API helper module for Express apps.
express-api-helper
Simple API helper module for Express apps.
API
ok(req, res, data)
Respond with 200 OK and JSON-encoded data.
reqexpress Requestresexpress ResponsedataObject
badRequest(req, res, errors)
Respond with 400 Bad Request and JSON-encoded error object, {message:String,errors:Array}.
reqexpress Requestresexpress ResponsedataArray (of String) or String
unauthorized(req, res)
Respond with 401 Unauthorized and JSON-encoded error object, {message:String}.
reqexpress Requestresexpress Response
forbidden(req, res)
Respond with 403 Forbidden and JSON-encoded error object, {message:String}.
reqexpress Requestresexpress Response
notFound(req, res)
Respond with 404 Not Found and JSON-encoded error object, {message:String}.
reqexpress Requestresexpress Response
unsupportedAction(req, res)
Respond with 405 Method Not Allowed and JSON-encoded error object, {message:String}.
reqexpress Requestresexpress Response
invalid(req, res, errors)
Respond with 422 Unprocessable Entity and JSON-encoded error object, {message:String,errors:Array}.
reqexpress Requestresexpress ResponseerrorsArray (of String) or String
serverError(req, res, error)
Respond with 500 Internal Server Error and JSON-encoded error object, {message:String,error:Object}.
reqexpress Requestresexpress ResponseerrorObject
requireParams(req, res, params, callback)
Require that listed parameters are present. Checks for presence of each parameter in req.body object if using express.bodyParser middleware; otherwise checks for presence of each parameter in req.params or req.query. If any parameters are missing, invokes badRequest with an array of error messages with the form "Missing required parameter: %s".
reqexpress Requestresexpress ResponseparamsArray (of String) or Stringcallback(err)Function
requireHeaders(req, res, headers, callback)
Require that listed headers are present. Checks for presence of each header in req.headers. If any parameters are missing, invokes badRequest with an array of error messages with the form "Missing required header parameter: %s".
reqexpress Requestresexpress ResponseheadersArray (of String) of Stringcallback(err)Function
Example
Sample usage:
var http = require('http'),
express = require('express'),
bodyParser = require('body-parser'),
api = require('express-api-helper'),
app = express(),
Post = require('./models/post');
app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
extended: true
}));
app.all('/api/*', function (req, res, next) {
if (!req.user) return api.unauthorized(req, res);
next();
});
app.post('/api/posts', function (req, res) {
api.requireParams(req, res, ['title', 'content', 'authorId'], function (err) {
if (err) return api.serverError(req, res, err);
var payload = {
title: req.body.title,
content: req.body.content,
authorId: req.body.authorId
};
Post.create(payload, function (err, post) {
if (err) return api.serverError(req, res, err);
api.ok(req, res, post.toJSON());
});
});
});
app.get('/api/posts', function (req, res) {
Post.find({}, function (err, posts) {
if (err) return api.serverError(req, res, err);
api.ok(req, res, posts.toJSON());
});
});
app.get('/api/posts/:id', function (req, res) {
Post.findById(req.params.id, function (err, post) {
if (err) return api.serverError(req, res, err);
if (!post) return api.notFound(req, res);
api.ok(req, res, post.toJSON());
})
});
http.createServer(app).listen(3000, function () {
console.log("Express API listening on 3000");
});
Running Tests
To run the tests, clone the repository and install the dev dependencies:
git clone git://github.com/paambaati/express-api-helper.git
cd express-api-helper && npm install
make test
License
MIT
