Node.js - Error Handling Patterns
What is wrong with this Express error handling middleware?
app.use((err, req, res) => {
res.status(500).send('Error: ' + err.message);
});