easyDSA

What is the difference between blocking and non-blocking I/O in Node.js?

431 views
01

Understand the problem

This question delves into the core I/O model of Node.js.

i/oblockingnon-blockingasynchronous
02

Attempt it yourself

Sketch your approach before reading the solution — that's what interviews test.

Stuck? AI Nudge Available

Get a conceptual hint to guide your logic without spoiling the final implementation.

03

Study the solution

The solution is waiting

Give it an honest attempt first — then compare your thinking with the full walkthrough.

04

Read the code

Same read, blocking vs non-blocking
import { readFileSync, readFile } from 'node:fs';

// Blocking: thread frozen until the file is read
const cfg = readFileSync('./config.json', 'utf8');   // OK at startup

// Non-blocking: returns immediately, callback later
readFile('./data.json', 'utf8', (err, data) => {
  if (err) throw err;
  console.log('got data while the thread served other work');
});
05

Join the discussion

Discussion (0)

Sign in to join the discussion.

No responses yet. Be the first to share what you think.