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

@maxhusky/indexmap

v1.0.0

Published

A indexed map

Readme

class IndexMap

A map that uses binary search

Constructors

new IndexMap(sortedArrays = [keys[], values[]])

  • sortedArrays {[]} OPTIONAL An array of two aligned array where the first are the keys and the second are the values. The keys must be aligned to their values and must be sorted in ascending order.
    • keys {Key[]} An array of keys.
    • values {Value[]} An array of values.

IndexMap.fromArray(keys, [sorted=false])

Creates an IndexMap from an array of keys.

  • keys {Key[]} An array of keys to add to the Index.
  • sorted {boolean} OPTIONAL Indicates if the array is sorted in ascending order. Default: false.

IndexMap.fromMap(mapLike, [sorted=false])

Creates an IndexMap from a map like object

  • mapLike {Map<Key, Value>}
  • sorted {boolean} OPTIONAL Indicates if the map has its keys sorted in ascending order. Default: false.

Properties

length {number} READONLY

The number of items in the IndexMap.

Methods

set(key, [value=undefined]): void

Sets a key to a given value.

  • key {Key} The key to set.
  • value {Value|undefined} OPTIONAL The value to set the key to.

get(key): Value|undefined

Gets the value assigned to the given key.

  • key {Key} The key to find the value of.

Returns {Value|undefined} the value or undefined if no key was found.

delete(key): Value|undefined

Deletes a key from the IndexMap.

  • key {Key} The key to delete.

Returns {Value|undefined} the value of the deleted key or undefined if no key was found/deleted.

getRange(min, max): Value[]

Gets all the values in the given range (inclusive).

  • min {Key} the smallest allowed key.
  • max {Key} the largest allowed key.

Returns {Value[]} the values that fit within the key range.

size(): number

Returns {number} the number of items in the IndexMap.

toString(): string

Returns {string} a string representing the IndexMap

toJSON(): [Key[],Value[]]

Returns {[Key[],Value[]]} an array of parallel arrays representing the key/value pairs of the IndexMap

Iterator

The iterator yields an array containing a key:pair. The first value is the key and the second value is its value. The iterator is auto updating to changes in the IndexMap however will skip any key pairs where the key is less then or equal to the last returned key.

Example

const sortedArrays = [['a', 'b', 'c', 'd'],
                      [  1,   3,   4,   0]];
var im = new IndexMap(sortedArrays);
for (let p of im) {
  console.log('key: ' + p[0]);
  console.log('value: ' + p[1]);
}
// prints:
//key: a
//value: 1
//key: b
//value: 3
//key: c
//value: 4
//key: d
//value: 0