Node.js - HTTP Module
This Express code tries to parse JSON body but fails:
What is the error?
app.use(express.json);
app.post('/test', (req, res) => {
res.json(req.body);
});What is the error?
