New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

smart-queue

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smart-queue - npm Package Compare versions

Comparing version
0.8.0
to
0.8.1
+5
-3
package.json
{
"name": "smart-queue",
"license": "MIT",
"description": "A generic purpose FIFO queue with ticket system, inspired by real life.",
"version": "0.8.0",
"description": "A generic purpose *\"delayed\"* FIFO queue with ticket system, inspired by real life.",
"version": "0.8.1",
"homepage": "https://github.com/Pupix/smart-queue",

@@ -30,4 +30,6 @@ "author": {

"ticket",
"FIFO"
"FIFO",
"delayed queue",
"delayed FIFO"
]
}
# smart-queue
A generic purpose FIFO queue with ticket system, inspired by real life.
A generic purpose *"delayed"* FIFO queue with ticket system, inspired by real life.

@@ -13,3 +13,3 @@ ## The `hows` and `whys`

arrives (from other asynchronous sources), you don't have to worry about ordering
your data before hand. The queue and tickets do it for you.
your data beforehand. The queue and tickets do it for you.

@@ -56,3 +56,3 @@ ## Download

Create and instance of `smart-queue`.
Creates an instance of `smart-queue`.

@@ -64,2 +64,4 @@ **Parameters**

The `handler` can be passed directly, without having to specify the limit.
## Properties

@@ -90,2 +92,5 @@

The processing won't start until all the requested tickets have been filled
with some kind of data.
### current()

@@ -92,0 +97,0 @@