Skip to content

Instantly share code, notes, and snippets.

@ulrikstrid
Last active August 29, 2015 14:06
Show Gist options
  • Save ulrikstrid/48eb60576369beb29d02 to your computer and use it in GitHub Desktop.
Save ulrikstrid/48eb60576369beb29d02 to your computer and use it in GitHub Desktop.
plugin.route({
method: 'GET',
path: '/articles',
handler: function (request, reply) {
Wreck.request('POST', 'http://api.com./article/search', articleListMapper(), function (err, res) {
Wreck.read(res, {
json: true
}, function (err, body) {
reply.view('index.ejs', body);
});
}
)
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment