Another way to use it!
const http = require('http')const bodyParser = require('body-parser')http.createServer((req, res) => { bodyParser.parse(req, (error, body) => { res.end(body) })}).listen(3000)