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

weighted-sampler

v1.1.0

Published

A zero-dependency library for weighted sampling using Walker's alias method.

Readme

weighted-sampler

A zero-dependency library for weighted sampling using Walker's alias method.

What is Walker's alias method?

Walker's alias method is an algorithm that enables weighted sampling in constant time.

Installation

npm install weighted-sampler

Usage

Weights must be finite, non-negative numbers, and their total must be greater than zero. They do not need to be normalized.

Class-style API

The primary API creates a reusable sampler object. Build it once, then call sample() or sampleMany() as often as needed.

import { createWeightedSampler } from "weighted-sampler";

const sampler = createWeightedSampler(["common", "uncommon", "rare"], [80, 15, 5]);

const value = sampler.sample();
const tenValues = sampler.sampleMany(10);

You can also provide the values and weights together:

const sampler = createWeightedSampler([
  { value: "common", weight: 80 },
  { value: "uncommon", weight: 15 },
  { value: "rare", weight: 5 },
]);

createWeightedSampler() throws a CreateWeightedSamplerError when its input is invalid. Pass randomFn to use a custom source of random numbers:

const sampler = createWeightedSampler(["heads", "tails"], [1, 1], {
  randomFn: () => 0.25,
});

Zero weights are accepted by default. Set allowZeroWeights: false to reject any zero weight:

const sampler = createWeightedSampler(["available", "disabled"], [1, 0], {
  allowZeroWeights: false,
});

In this example, createWeightedSampler() throws a CreateWeightedSamplerError because the second weight is zero. With the functional API, tryCreateWeightedSampler() returns { ok: false, error: "Invalid weights" } instead.

Functional API

The core entry point exposes the alias table and sampling operations separately. tryCreateWeightedSampler() returns a result object instead of throwing an error.

import { sample, sampleMany, tryCreateWeightedSampler } from "weighted-sampler/core";

const result = tryCreateWeightedSampler([
  { value: "common", weight: 80 },
  { value: "uncommon", weight: 15 },
  { value: "rare", weight: 5 },
]);

if (!result.ok) {
  console.error(result.error);
} else {
  const value = sample(result.value);
  const tenValues = sampleMany(result.value, 10);
}

Running the benchmark

Install the development dependencies, then run:

npm install
npm run benchmark

The benchmark builds the library and measures sampler construction and sampling for 10 to 1,000,000 weighted elements. By default, it performs 100,000 warmup samples and five measured runs of 1,000,000 samples for each element count.

Use the command-line options to shorten or customize a run:

npm run benchmark -- --samples 100000 --warmup 10000 --runs 3

Run npm run benchmark -- --help to list all available options.