In reply to this conservation: Slides from @asyncjs talk on @hapijs - http://glennjones.net/presentations/2013-10-10-be-more-hapi… the code is on github - https://github.com/glennjones/be-more-hapi … 11 years ago – Glenn Jones on twitter @glennjones, @hapijs looks really nice. but example in the slides uses GET to add numbers? "method: 'GET', path: '/sum/add/{a}/{b}'" 11 years ago – Srdjan on twitter @djidja8 was not sure what verb/input type to use there, how would you have designed it? Went with get url as sum result does not change 11 years ago ‐ Also on: Twitter | Favourite Retweet Reply Mentions: @glennjones maybe: method: 'PUT', path: '/sum/', config: { handler: handlers.sum.add, body: '{arg1: {a}, arg2: {b}}', ... 11 years ago – Srdjan on twitter