Skip to main content
๐Ÿ› Bug HuntND Node.js Mediumโšก+20 XP

Missing Error Handler

Express doesn't return errors to clients.

๐Ÿ› Find the bug
1app.get('/data', async (req, res) => {
2 const data = await fetchData();
3 res.json(data);
4});
๐Ÿ› The bug is on line 2

๐Ÿ”ง Select the correct fix: