1.0.0 • Published 6 years ago

json-body-trim v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

JSON Body Trim

Json white space cleaner

Install

$ npm i json-body-trim --save

API

const jsonBodyTrim = require('json-body-trim');
const app = require('express')();

app.use(jsonBodyTrim());

...

Example

const jsonBodyTrim = require('json-body-trim');
const bodyParser = require('body-parser');

const app = require('express')();

app.use(bodyParser.json());
app.use(jsonBodyTrim());

app.post('/', (req, res) => {
    res.send(req.body);
})

app.listen(8080);


// post localhost:8080 this data: {"   test   ": "hello  "}
// response this data: {"test":"hello"}