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

@zerodep/struct-queue

v2.4.12

Published

A factory that returns an optionally-typed, Queue data structure.

Downloads

90

Readme

@zerodep/struct-queue

version language types license

CodeFactor Known Vulnerabilities

OpenSSF Best Practices

A queue data structure implementation with event emitting.

Full documentation is available at the zerodep.app site.

Signature

declare const structQueueFactory: <T = any>(name: string, items?: T[]) => Queue<T>;

interface Queue<T> {
  enqueue: (item: T) => void;
  dequeue: () => T | undefined;
  front: () => T | undefined;
  size: () => number;
  isEmpty: () => boolean;
  clear: () => void;
  toArray: () => T[];
}

interface QueueEvents<T> {
  enqueued: { name: string; ts: number; payload: T };
  dequeued: { name: string; ts: number; payload: T };
  emptied: { name: string; ts: number };
}

Factory Parameters

The structQueueFactory function has the following parameters:

  • name - a name of the queue, primarily for use in the EventEmitter to differentiate events from multiple queues
  • items - an optional array of items with which to populate the queue, last item in the array is the top item in the queue, or, first item is at the bottom of the queue

Queue Methods

The structQueueFactory returns an object with the following methods:

  • enqueue() - adds an item to the end of the queue
  • dequeue() - gets and removes an item from the front of the queue
  • front() - gets the item from the front of the queue, does not remove it
  • size() - how many items are in the queue
  • isEmpty() - check if the queue is empty
  • clear() - removes all items from the queue
  • toArray() - converts the queue to an array suitable for serialization, first item in the queue is the first item in the array

Emitted Event Data

The structQueueFactory events return an object with the following shape:

  • name - the name of the queue
  • ts - the number is milliseconds since the unix epoch
  • payload - the item that was enqueued or dequeued

Examples

// ESM
import { queueFactory } from '@zerodep/struct-queue';

// CJS
const { queueFactory } = require('@zerodep/struct-queue');

Simple Case

const queue = structQueueFactory('Queue #1');

// add items to the queue
queue.enqueue('a');
queue.enqueue('b');
queue.enqueue('c');

queue.size(); // 3

queue.pop(); // "a"

queue.peek(); // "b"

queue.toArray(); // ["b", "c"]

Populate at Creation

const queue = structQueueFactory('Queue #2', ['aa', 'bb', 'cc', 'dd']);

queue.size(); // 4

queue.toArray(); // ["aa", "bb", "cc", "dd"]

Export/Serialize a Queue

const queue = structQueueFactory('Queue #3', ['aa', 'bb', 'cc', 'dd']);
queue.enqueue('ee');
queue.enqueue('ff');

const items = queue.toArray();
console.log(items); // ["aa", "bb", "cc", "dd", "ee", "ff"]

Event Emitter

const queue = structQueueFactory('Queue #4');

// setup event listeners
queue.on('enqueued', (event) => {
  console.log('ENQUEUED:', event);
});
queue.on('dequeued', (event) => {
  console.log('DEQUEUED', event);
});
queue.on('emptied', (event) => {
  console.log('EMPTIED', event);
});

queue.enqueue('aaa');
// event listener causes the following console output:
// "ENQUEUED", { name: "Queue #4", ts: 1693161896772, payload: "aaa" };

queue.dequeue();
// event listener emits two events in this case (as the queue is now empty)
// "DEQUEUED", { name: "Queue #4", ts: 1693161988176, payload: "aaa" };
// "EMPTIED", { name: "Queue #4", ts: 1693161988176 };

ZeroDep Advantages

  • Zero npm dependencies - completely eliminates all risk of supply-chain attacks, decreases node_modules folder size
  • ESM & CJS - supports both ECMAScript modules and common JavaScript exports
  • Tree Shakable - built to be fully tree shakable ensuring your packages are the smallest possible size
  • Fully Typed - typescript definitions are provided/built-in to every package for a superior developer experience
  • Semantically Named - package and method names are easy to grok, remember, use, and read
  • Documented - actually useful documentation with examples at zerodep.app
  • Intelligently Packaged - multiple npm packages of different sizes available allowing a menu or a-la-carte composition of capabilities
  • 100% Tested - all methods and packages are fully unit tested
  • Predictably Versioned - semantically versioned for peace-of-mind upgrading, valuable changelogs for understand changes
  • MIT Licensed - permissively licensed for maximum usability