hathor-proxy

0.0.1 • Public • Published

Hathor Proxy

A wrapper around H2O2 for Hathor allowing simple proxy routes to be surface.

Route documentation can be found at https://github.com/hapijs/h2o2

Install:

npm install hathor-proxy

Example:

config/config.js

module.exports = {
  server: {
    plugins: [
      require('hathor-proxy')
    ],
    ...Typical stuff here...
  }
}

routes/httpbin/index.js

module.exports = {
  method: ['GET', 'POST', 'PUT', 'DELETE'],
  path: '/api/httpbin/{stuff*}',
  auth: true,
  config: {
    description: 'Basic proxy route to httpbin.',
    notes: 'Sends whatever it gets over to http://httpbin.org.',
    tags: ['api'],
  },
  handler: {
    proxy: {
      passThrough: true,
      mapUri(req, callback){
        return callback(null, `http://httpbin.org/${req.params.stuff}`)
      }
    }
  }
};

Start your app, hit /api/httpbin/get and see the glory!

Readme

Keywords

none

Package Sidebar

Install

npm i hathor-proxy

Weekly Downloads

0

Version

0.0.1

License

ISC

Last publish

Collaborators

  • jdarling