Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 495 Bytes

File metadata and controls

32 lines (20 loc) · 495 Bytes

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