A synchronous queue, nothing more
npm install @emphori/micro-queue⏳ A super simple synchronous queue using as little code as possible


This module aims to provide a basic, minimalist approach to synchronous queue management. Simply invoke the module directly with a function as it's first and only argument, and that function will be called as soon as possible (with respect to any functions that may already be waiting in the queue).
Below is a very simple example on how best to use this module. For appearances sake, and to be in keeping with the philosophy of this module, the constant q is chosen, however, if a more expressive or verbose approach is favourable use mQueue instead.
``javascript
const Queue = require('@emphori/micro-queue');
// Add a function to the queue, like so
Queue((done) => {
// ... do something snazzy
// Then simply call the "done" method upon completion
done();
});
``
Part of the Micro collection