Nest → Go #3 — Node Can't Block. Go Can.
In Node, when I need to stop two requests from hitting a resource at the same time, I reach for a library:
import pLimit from 'p-limit';
const limit = pLimit(1); // one at a time
await limi
bswebdev.hashnode.dev5 min read