I have a simple express app, however, when I try and post to it with express the body is empty.
app.post('/test', (req, res) => {
console.log(req.body);
res.send('Hello World!');
});
I have a body parser setup
app.use(bodyParser.raw({ limit: '50mb', type: ['image/*'] }),);
Can I send binary files from postman?