JavaScript Tutorial

Event-Driven Architecture

System design where components interact through events and callbacks.

const server = require('http').createServer((req, res) => {
  res.end('Hello, EDA!');
}).listen(3000);