ctrl-http-server
![Codacy Badge](https://api.codacy.com/project/badge/Coverage/de53d9ef604a4c03a498e821f3ec2cdb)
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
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)