ctrl-http-server
v3.0.0
Published
An abstraction around hapi.js.
Downloads
3
Readme
ctrl-http-server
An abstraction around hapi.js.
Installation
Yarn is recommended for installation.
$ yarn add ctrl-http-server
But you can still use npm:
$ npm install --save ctrl-http-server
Usage
// Example app.js:
const CtrlHttpServer = require('ctrl-http-server')
const ctrlHttpServer = new CtrlHttpServer({port: 8080})
ctrlHttpServer.get('/route', (request, reply) => {
reply('Hello, world!')
})
ctrlHttpServer.start()
Methods
Full documentation to come soon!
License
Copyright (c) 2016 Martin Experiments LLC
MIT (https://www.opensource.org/licenses/MIT)