UNPKG

jive-sdk

Version:

Node.js SDK for Jive Software to assist with the development of add-ons

9 lines (8 loc) 255 B
var jive = require('jive-sdk'); exports.explicitRouteExample = { 'verb' : 'get', 'path' : 'explicit/route/example', 'route': function(req,res) { res.render('hello.html', { routeMethod : 'explicit', name: jive.util.guid() } ); } };