Node.js - HTTP Module
What is wrong with this Node.js code snippet that tries to read JSON data from the request body?
const http = require('http');
const server = http.createServer((req, res) => {
const data = req.body;
res.end(data);
});
server.listen(3000);