What is Node.js?
Node.js is an open-source, cross-platform JavaScript runtime environment that allows developers to run JavaScript on the server-side.
Node.js provides an event-driven, non-blocking I/O model that makes it efficient for handling multiple connections.
It's used for building scalable and high-performance server-side applications.
Resources
Example Node.js Server
const http = require('http'); http.createServer((req, res) => { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(3000, () => { console.log('Server running on port 3000'); });