app.get('/', (req, res) => { res.send('Hello World!'); });
Most introductory Node courses start with npm init , install Express, and have you sending "Hello World" to a browser within ten minutes. Grider takes the opposite approach. His Node course famously begins not with a web server, but with the —the low-level, single-threaded machinery that makes Node non-blocking.