Q:

parse json express

// Update for Express 4.16+
// Starting with release 4.16.0, a new express.json() middleware is available.
var express = require('express');
var app = express();

app.use(express.json());

app.post('/', function(request, response){
  console.log(request.body);      // your JSON
   response.send(request.body);    // echo the result back
});

app.listen(3000);
1

// parse application/json
app.use(bodyParser.json())
1
$ npm install body-parser
0

New to Communities?

Join the community