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 🙏

© 2026 – Pkg Stats / Ryan Hefner

flatqueue

v3.1.0

Published

The smallest and simplest JavaScript priority queue

Readme

flatqueue

A very fast and tiny binary heap priority queue in JavaScript.

Similar to tinyqueue, but stores the queue as two flat arrays of items and their numeric priority values respectively (without a way to specify a comparator function). This makes the queue more limited, but several times faster.

Build Status Simply Awesome

Usage

const q = new FlatQueue();

for (let i = 0; i < items.length; i++) {
    // Push an item index and its priority value. You can push other values as well,
    // but storing only integers is much faster due to JavaScript engine optimizations.
    q.push(i, items[i].priority);
}

q.peekValue(); // Read the top item's priority value
q.peek(); // Read the top item
q.pop(); // Remove and return the top item

Install

Install with npm install flatqueue, then use as a module:

import FlatQueue from 'flatqueue';

Alternatively, use as a module in a browser directly:

<script type="module">
    import FlatQueue from 'https://cdn.jsdelivr.net/npm/flatqueue/+esm';

For legacy environments requiring CommonJS or a UMD bundle, use flatqueue v2.

API

new FlatQueue([capacity[, ValuesArray[, IdsArray]]])

Creates an empty queue object with the following methods and properties:

push(item, priority)

Adds item to the queue with the specified priority.

priority must be a number. Items are sorted and returned from low to high priority. Multiple items with the same priority value can be added to the queue, but the queue is not stable (items with the same priority are not guaranteed to be popped in iteration order).

pop()

Removes and returns the item from the head of this queue, which is one of the items with the lowest priority. If this queue is empty, returns undefined.

peek()

Returns the item from the head of this queue without removing it. If this queue is empty, returns undefined.

peekValue()

Returns the priority value of the item at the head of this queue without removing it. If this queue is empty, returns undefined.

clear()

Removes all items from the queue.

shrink()

Shrinks the internal arrays to this.length.

pop() and clear() calls don't free memory automatically to avoid unnecessary resize operations. This also means that items that have been added to the queue can't be garbage collected until a new item is pushed in their place, or this method is called.

length

Number of items in the queue. Read-only.

capacity

Maximum number of items the queue can hold, or Infinity for a regular-array queue (created without a capacity). Read-only.

ids

An underlying array of items. Note that it can be bigger than the length as it's not eagerly cleared.

values

An underlying array of priority values. Note that it can be bigger than the length as it's not eagerly cleared.

Using typed arrays

If capacity is provided, the queue is backed by fixed-size typed arrays instead of regular arrays, which is faster and uses less memory, matching the performance of the popular heapify library, but the queue can't grow past capacity, throwing a RangeError. This is ideal when the maximum size is known upfront.

values uses ValuesArray (default Float64Array) and ids uses IdsArray (default Uint32Array); pass narrower constructors like Uint16Array if your priorities or ids are known to fit them.

// a queue up to 10000 nodes, with Uint32 priorities and Uint16 ids
const q = new FlatQueue(64, Uint32Array, Uint16Array);