zuper-json-bodyparser
v0.3.1
Published
JSON body parser for zuper
Downloads
2
Readme
json-bodyparser
JSON body parser for zuper
##Usage
import { Server } from 'http'
import { Application } from 'zuper'
import json from 'zuper-json-bodyparser'
const server = new Server()
const app = new Application()
const getBody = req => req.body
app.use(json)
app.use(getBody)
server.on('request', app.handleRequest)
server.listen(80, '127.0.0.1', () => {
console.log('Server running at http://localhost/')
})