Answers for "parse json express post"

10

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);
Posted by: Guest on May-09-2020
4

How to parse POST requests with express nodejs

const express = require('express');
const bodyParser = require('body-parser');

const app = express();
app.use(bodyParser.urlencoded({ extended: true }));

app.post('/post-test', (req, res) => {
    console.log('Got body:', req.body);
    res.sendStatus(200);
});

app.listen(8080, () => console.log(`Started server at http://localhost:8080!`));
Posted by: Guest on May-17-2020
0

express json body

var bodyParser = require('body-parser')
Posted by: Guest on March-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language