mixdown-json
v3.0.2
Published
Json response plugin for mixdown.js
Downloads
4
Readme
mixdown-json
Plugin for json response for mixdown.js.
Usage
Mixdown Router handler
module.exports = function(httpContext) {
var req = httpContext.request;
var res = httpContext.response;
var app = httpContext.app;
app.plugins.json.send({ hip: 'hop '}, res, {}, req);
};
Express
var app = mixdown.apps['foo'];
expressApp.get('/foo/bar', function(req, res) {
app.plugins.json.send({ hip: 'hop '}, res, {}, req);
});