Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maximilianschmitt/sleepqueue
A promise-based queue that sleeps between callbacks.
https://github.com/maximilianschmitt/sleepqueue
Last synced: about 1 month ago
JSON representation
A promise-based queue that sleeps between callbacks.
- Host: GitHub
- URL: https://github.com/maximilianschmitt/sleepqueue
- Owner: maximilianschmitt
- License: mit
- Created: 2015-05-24T19:44:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-28T01:00:14.000Z (over 9 years ago)
- Last Synced: 2024-11-23T23:07:29.062Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/sleepqueue
- Size: 125 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# sleepqueue
[![Travis Build](http://img.shields.io/travis/maximilianschmitt/sleepqueue.svg?style=flat)](https://travis-ci.org/maximilianschmitt/sleepqueue) [![Code Coverage](https://img.shields.io/coveralls/maximilianschmitt/sleepqueue.svg)](https://coveralls.io/r/maximilianschmitt/sleepqueue) [![npm](https://img.shields.io/npm/dm/sleepqueue.svg)](https://www.npmjs.com/package/sleepqueue)
A promise-based queue that sleeps between callbacks.
## Installation
```
$ npm i sleepqueue -S
```## Usage
### General
```js
var sleepqueue = require('sleepqueue');// create a queue with an interval of 1 second
var queue = sleepqueue({ interval: 1000 });// `push` pushes to the end of the queue
queue.push(print('My name is'));
queue.push(print('My name is'));
queue.push(print('My name is'));
queue.push(print('Slim Shady'));// `unshift` pushes to the start of the queue
queue.unshift(print('Hi'));// just a helper function
function print(what) {
return function() {
console.log(what);
};
}
```Output:
```
Hi
# (wait 1 second)
My name is
# (wait 1 second)
My name is
# (wait 1 second)
My name is
# (wait 1 second)
Slim Shady
```### Errors
Uncaught errors and rejected promises will stop the queue and emit an error event.
```js
queue.push(print('Hello'));
queue.push(function() {
throw 'I stopped the queue';
});
queue.push(print('Bye'));queue.on('error', function(err) {
console.log('Error: ' + err);
});
```Output:
```
Hello
Error: I stopped the queue
```