fetch() POST request to Express.js generates empty body {}
Add the following line in addition to your current bodyParser app.use() right before: app.use(bodyParser.json()); This will enable bodyParser to parse content type of application/json. Hopefully that helps!