p-queue
Promise queue with concurrency control
p-fifo
Promised First-In-First-Out buffer. Await on push to be told when a value is consumed and await on shift for a value to consume when the buffer is empty.
tiny-queue
Simple FIFO queue implementation to avoid having to do shift() on an array, which is slow.