Assume you want to write some backend using node/express. That’s the good idea, it’s easy — you just write const express = require('express')
const app = express() app.get('/', (req, res) => res.send('Hello')) app.listen(3000) and that’s all you need to start. Then you realize that any backend is usually a queue…