๐ Bug HuntND Node.js Mediumโก+20 XP
Missing Error Handler
Express doesn't return errors to clients.
๐ Find the bug
1
app.get('/data', async (req, res) => {2
const data = await fetchData();3
res.json(data);4
});๐ The bug is on line 2