UNPKG

generator-aristos

Version:

create aristos cms fast with yeoman generator.

9 lines (8 loc) 267 B
const bodyParser = require("body-parser"); module.exports = app => { /* Body Parser Middleware */ /* Parse application/x-www-form-urlencoded */ app.use(bodyParser.urlencoded({ extended: false })); /* Parse application/json */ app.use(bodyParser.json()); };