0

Completed

0%

Progress

0

Starred

01

What is Node.js and how does it differ from traditional web servers like Apache or Nginx?

beginner#Basics
02

Explain the Event-Driven Architecture in Node.js. How does it work?

beginner#Basics
03

What's the difference between CommonJS and ES Modules in Node.js? How do you use each?

beginner#Modules
04

How does non-blocking I/O work in Node.js? Give a concrete example with file system operations.

beginner#Basics
05

What is the V8 engine and how does Node.js use it?

beginner#Basics
06

How do you manage dependencies with NPM? Explain package.json, node_modules, and lock files.

beginner#Modules
07

How do you create a basic HTTP server in Node.js using the core http module?

beginner#HTTP
08

What are environment variables in Node.js and how do you use them?

beginner#Basics
09

What are streams in Node.js and why are they important for handling large data?

beginner#Streams
10

What is the process object in Node.js? What are its common uses?

beginner#Basics
11

What is the Path module in Node.js and how do you use it to work with file paths?

beginner#Basics
12

What information can you retrieve with the OS module in Node.js? Give examples.

beginner#Basics
13

What are Buffers in Node.js? How do they differ from arrays and strings?

beginner#Buffers
14

How do you use native fetch in Node.js? How is it different from browser fetch?

beginner#Basics
15

What is Express.js and how do you build a basic REST API with it?

beginner#Express.js
16

How do you handle JSON in Node.js? Parse, stringify, and work with JSON files.

beginner#Basics
17

What is async/await in Node.js? How does it differ from promises and callbacks?

beginner#Basics