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

functional-browser

v0.0.1

Published

A set of factory wrappers for all classes in the browser

Readme

Functional Bro~~wser~~

ts Tree-shakeable ts

Functional wrappers for every global browser constructor. Because new is getting old.

What is this?

A collection of factory functions for literally every built-in browser constructor. No instantiation logic, no clever wrapping just pure, functional abstraction for your architecture diagrams.

Example:

Before: (yuck)

const abortController = new AbortController();

After: (Phew that's better)

import { createAbortController } from 'functional-browser';
const abortController = createAbortController();

Yeah. That’s it. It’s just new AbortController() — but with more ceremony and less class.

Why tho?

I noticed functional programmers get real squirmy when they see new anywhere in their perfect functional codebase. You say “constructor,” they say “side-effect.”

So this library exists for:

  • devs who want all the things as pure functions
  • functional programming extremists
  • People who like double layered syntaxical sugar

What’s included?

Every browser global constructor wrapped in a multiple function names, so your all your existing factories can align with what ever naming paradigm you have chosen this week.

createAbortController()
initAbortController()
spawnAbortController()
buildAbortController()
makeAbortController()
constructAbortController()

These all do exactly the same thing. You're welcome bty.

Install

yarn add functional-browser
# or
npm install functional-browser

No post-install scripts. No weird side effects. Just a lovingly handcrafted index of browser constructor wrappers.

Usage

import { makeImageBitmap, spawnAudioContext, constructWebSocket } from 'functional-browser';

const img = makeImage(900, 900);
const ctx = spawnAudioContext();
const socket = constructWebSocket('wss://echo.websocket.org');

These are just... new Image(), new AudioContext() and new WebSocket(...) under the hood but ✨your code looks more functional now✨.

Is this tree-shakeable?

Yes. Every constructor wrapper is its own export. If your bundler pulls in the whole thing, that’s your fault probably.

FAQ

Q: Is this tree-shakeable? A: Scroll up, bro.

Q: Is this a joke or real? A: Yes.

Shoutout to the Functional Purists

Thanks to the functional bros for constantly reminding us that anything wrapped in a function is “better”... even when it’s just new Foo() inside. You are the reason this package exists. This one’s for you.