0.1.2 • Published 3 years ago

express-prettify v0.1.2

Weekly downloads
2,254
License
MIT
Repository
github
Last release
3 years ago

express-prettify

NPM Version NPM Downloads Build Status Coverage Status Code Climate Known Vulnerabilities

express middleware to send pretty printed json

Install

$ npm install express-prettify

Examples

"use strict";

var app = require('express')();
var pretty = require('express-prettify');

app.use(pretty({ query: 'pretty' }));

app.get('/', function(req, res) {
  res.json({ hello: 'world', body: 'This is pretty printed json' });
});

app.listen(3000);
$ node app.js &

$ curl http://localhost:3000?pretty
{
  "hello": "world",
  "body": "This is pretty printed json"
}

$ curl http://localhost:3000
{ "hello": "world", "body": "This is pretty printed json" }

License

MIT