Code RoomFrame split across packets
HardPrep Room Coding #2224

Frame split across packets

Code reviewNetworking & APIsDistributed systemsSenior–Staff~22 min

Review this Node.js code that parses newline-delimited JSON events off a TCP socket.

What a strong answer looks like

Separate real bugs from style. Rank issues by severity, point at the root cause rather than the symptom, and suggest a concrete fix, specific and kind.

0:00 of about 22 min
Mark a line and say what kind of problem it is.0 findings
1socket.on('data', (chunk) => {
2 const line = chunk.toString('utf8').trim();
3 const event = JSON.parse(line);
4 handle(event);
5});
Which questions mattered is sealed until you submit. Telling you now would just be handing over the edge cases.