mixdown-json

3.0.2 • Public • Published

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);
});
 

Readme

Keywords

Package Sidebar

Install

npm i mixdown-json

Weekly Downloads

1

Version

3.0.2

License

MIT

Last publish

Collaborators

  • tommydudebreaux