Asynchronous event-driven Javascript runtime
Node.js compiles JavaScript directly using Google's V8 engine. It features non-blocking I/O routines that allow simple, high-concurrency microservices backends.
const http = require('http');
const server = http.createServer((req, res) => {
res.end('Hello from Node.js!');
});
server.listen(3000);