{"id":17004957,"url":"https://github.com/maximilianschmitt/sleepqueue","last_synced_at":"2025-03-22T10:39:45.228Z","repository":{"id":32605103,"uuid":"36189782","full_name":"maximilianschmitt/sleepqueue","owner":"maximilianschmitt","description":"A promise-based queue that sleeps between callbacks.","archived":false,"fork":false,"pushed_at":"2015-05-28T01:00:14.000Z","size":128,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-11T19:42:49.615Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/sleepqueue","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/maximilianschmitt.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-05-24T19:44:55.000Z","updated_at":"2015-05-28T02:06:34.000Z","dependencies_parsed_at":"2022-07-12T14:22:23.360Z","dependency_job_id":null,"html_url":"https://github.com/maximilianschmitt/sleepqueue","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximilianschmitt%2Fsleepqueue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximilianschmitt%2Fsleepqueue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximilianschmitt%2Fsleepqueue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximilianschmitt%2Fsleepqueue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maximilianschmitt","download_url":"https://codeload.github.com/maximilianschmitt/sleepqueue/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244945597,"owners_count":20536295,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T04:44:53.336Z","updated_at":"2025-03-22T10:39:45.204Z","avatar_url":"https://github.com/maximilianschmitt.png","language":"JavaScript","readme":"# sleepqueue\n\n[![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)\n\nA promise-based queue that sleeps between callbacks.\n\n## Installation\n\n```\n$ npm i sleepqueue -S\n```\n\n## Usage\n\n### General\n\n```js\nvar sleepqueue = require('sleepqueue');\n\n// create a queue with an interval of 1 second\nvar queue = sleepqueue({ interval: 1000 });\n\n// `push` pushes to the end of the queue\nqueue.push(print('My name is'));\nqueue.push(print('My name is'));\nqueue.push(print('My name is'));\nqueue.push(print('Slim Shady'));\n\n// `unshift` pushes to the start of the queue\nqueue.unshift(print('Hi'));\n\n// just a helper function\nfunction print(what) {\n  return function() {\n    console.log(what);\n  };\n}\n```\n\nOutput:\n\n```\nHi\n# (wait 1 second)\nMy name is\n# (wait 1 second)\nMy name is\n# (wait 1 second)\nMy name is\n# (wait 1 second)\nSlim Shady\n```\n\n### Errors\n\nUncaught errors and rejected promises will stop the queue and emit an error event.\n\n```js\nqueue.push(print('Hello'));\nqueue.push(function() {\n  throw 'I stopped the queue';\n});\nqueue.push(print('Bye'));\n\nqueue.on('error', function(err) {\n  console.log('Error: ' + err);\n});\n```\n\nOutput:\n\n```\nHello\nError: I stopped the queue\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximilianschmitt%2Fsleepqueue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaximilianschmitt%2Fsleepqueue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximilianschmitt%2Fsleepqueue/lists"}