๐ Bug HuntND Node.js Easyโก+10 XP
Sync in Async Context
This blocks the event loop and degrades performance.
๐ Find the bug
1
app.get('/file', (req, res) => {2
const data = fs.readFileSync('big.txt');3
res.send(data);4
});๐ The bug is on line 2