npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

timeout-queue

v1.0.3

Published

Create a queue where values time out if not removed soon enough

Downloads

7

Readme

timeout-queue

Add items to the end of a queue. If the item is not pulled off the queue before time expires then the item will call it's callback function and be pulled off the queue immediately.

Installation

npm install timeout-queue

Usage

const timeoutQueue = require('timeout-queue');
const start = Date.now();

// items added to the queue set to persist for 500 ms before calling
// the expired function and removing the item from the queue
const queue = timeoutQueue(500, expired);

// add two items to the queue, both will expire in 500 ms
queue.push('Bob');
queue.push('Jan');

// output the queue length
console.log(queue.length);                      // 2

setTimeout(function() {
    const value = queue.next();
    console.log(time() + 'Got ' + value);       // "at 200 ms: Got Bob"
}, 200);

function expired(value) {
    console.log(time() + 'Expired ' + value);   // "at 500 ms: Expired Jan"
}

function time() {
    return 'at ' + (Date.now() - start) + ' ms: ';
}

API

timeoutQueue ( [ defaultTimeToLive ] [, timeoutCallback ] )

Get an instance of a timeout queue. Values added to the queue will last for the number of milliseconds specified in the defaultTimeToLive parameter. If they are not pulled off the queue before the value expires then the timeoutCallback function will be called with the value that was added to (and expired from) the queue.

Parameters

  • defaultTimeToLive - The optional default number of milliseconds that a value will live on the queue before expiring. If set to a negative number then the default time to live will be to not expire. Defaults to -1.
  • timeoutCallback - The optional callback function to call if the value added to the queue is not removed before the timeToLive expires.

Returns object with the next, push, and length,

Example

const timeoutQueue = require('timeout-queue');
const queue = timeoutQueue(500, function(value) {
    console.log('Expired ' + value);
});

#length

Get the length of the queue.

Returns a number.

Example

const timeoutQueue = require('timeout-queue');
const queue = timeoutQueue(500);

queue.push('Bob');

console.log(queue.length);         // 1

#next ( )

Get the next item off of the queue.

Returns the value of the item pulled off the queue.

Example

const timeoutQueue = require('timeout-queue');
const queue = timeoutQueue(500);

queue.push('Bob');

const value = queue.next();
console.log(value);         // "Bob"

#push ( value [, timeToLive ] [, callback ] )

Add a value to a timeout queue.

Parameters

  • value - The value to add to the queue.
  • timeToLive - An optional number specifying the number of seconds the value should remain on the queue. If omitted then the default time to live will be used.
  • callback - An optional callback to call when the value is removed from the queue (either by expiring or not). The callback is passed two parameters: 1) the value, 2) a boolean specifying if it was removed because it expired.

Returns the value passed in.

Example 1: Value Only

const timeoutQueue = require('timeout-queue');
const queue = timeoutQueue(500, function(value) {
    console.log('Expired ' + value);
});

queue.push('Bob');

Example 2: Value Plus Custom Expiration

const timeoutQueue = require('timeout-queue');
const queue = timeoutQueue(500, function(value) {
    console.log('Expired ' + value);
});

queue.push('Bob', 700);

Example 3: Value Plus Extra Callback

const timeoutQueue = require('timeout-queue');
const queue = timeoutQueue(500, function(value) {
    console.log('Expired ' + value);
});

queue.push('Bob', removed);

function removed(value, expired) {
    console.log('Value removed: ' + value + ', Expired: ' + expired);
}

Example 4: All Arguments

const timeoutQueue = require('timeout-queue');
const queue = timeoutQueue(500, function(value) {
    console.log('Expired ' + value);
});

queue.push('Bob', 700, removed);

function removed(value, expired) {
    console.log('Value removed: ' + value + ', Expired: ' + expired);
}