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

@fettstorch/jule

v3.1.0

Published

Some general JS/TS utils

Readme

@fettstorch/jule

A collection of TypeScript utilities I use in my projects.

Installation

Using bun:

bun add @fettstorch/jule

Usage examples

when

import { when } from '@fettstorch/jule'
function foo(case: number | undefined): string {
    return when(case)({
        1: 'one',
        2: () => 'two',
        3: (c) => `three ${c}`,
        else: (c) => `something else ${c}`
    })
}

awaitable

import { awaitable, Awaitable } from '@fettstorch/jule'
const promise: Awaitable = awaitable<number>()
await promise
// somewhere else
promise.resolve(42)

Observable

import { Observable } from '@fettstorch/jule'
const observable = new Observable<number>()
observable.subscribe((value) => console.log(value))
observable.emit(1)

once (lazy)

import { once } from '@fettstorch/jule'
const cachedAction = once(() => computationHeavyStuff())
cachedAction() // heavy computation happens here lazily
cachedAction() // will return the cached result instead of running the heavy computation again

cached (lazy)

import { cached } from '@fettstorch/jule'
// like `once`, but keyed per-argument and with optional time-based eviction
const fetchUser = cached((id: number) => expensiveLookup(id))
fetchUser(1) // runs the lookup for id 1
fetchUser(1) // returns the cached result for id 1
fetchUser(2) // different argument -> runs the lookup again

// manual eviction: drop one entry, or clear the whole cache
fetchUser.evict(1) // next fetchUser(1) recomputes
fetchUser.clear() // drops every cached entry

// evict after a time-to-live (ms); recomputes once the ttl has elapsed
const now = cached(() => Date.now(), { ttlMs: 1000 })
now() // computes
now() // cached for up to 1 second, then recomputes on the next call

// object arguments — objectArgFingerprintStrategy decides how they are keyed.
// 'structural' (default): equal shape -> same entry, regardless of property order
const byShape = cached((p: { id: number }) => expensiveLookup(p.id))
byShape({ id: 1 })
byShape({ id: 1 }) // cached: a fresh but equal object hits the same entry

// 'identity': keyed by reference, so a fresh equal object is a new entry
const byRef = cached((p: { id: number }) => expensiveLookup(p.id), {
  objectArgFingerprintStrategy: 'identity'
})
const p = { id: 1 }
byRef(p)
byRef(p) // cached: same reference
byRef({ id: 1 }) // recomputes: different reference

// opt into shared state by passing an explicit cache (and optionally a cacheKey)
const store = {}
const a = cached(computeA, { cache: store })
const b = cached(computeB, { cache: store, cacheKey: 'b' })

sleep

import { sleep } from '@fettstorch/jule'
await sleep(1000)

debounce

import { debounce } from '@fettstorch/jule'
const action = () => console.log('action')
debounce(action, 1000)
debounce(action, 1000)
debounce(action, 1000) // will log 'action' once after 1 second
// OR
import { debounced } from '@fettstorch/jule'
const debouncedAction = debounced(action, 1000)
debouncedAction()
debouncedAction()
debouncedAction() // will log 'action' once after 1 second
// OR
import { debounce } from '@fettstorch/jule'
const lock = {}
const action1 = () => console.log('action1')
const action2 = () => console.log('action2')
debounce(action1, 1000, lock) // will be forgotten in favor of action2
debounce(action2, 1000, lock) // action2 will be logged after 1 second

synchronize

import { synchronize } from '@fettstorch/jule'
let result = 0
const lock = {}
const foo = () => {
  result = 1
}
const bar = async () => {
  await sleep(1000)
  result = 2
}
const syncedFoo = synchronize(foo, lock)
const syncedBar = synchronize(bar, lock)
syncedBar()
syncedFoo()
//await bar -> result is 1 as syncedFoo will definitely be executed after syncedBar

toMap

import { toMap } from '@fettstorch/jule'
const originalMap = new Map([
  ['a', 1],
  ['b', 2]
])
const newMap = toMap(originalMap, ([key, value]) => [key, value.toString()])
// newMap is now a new Map([['a', '1'], ['b', '2']])

// OR
const newMap = toMap({ a: 1, b: 2 }, ([key, value]) => [key, value.toString()])
// newMap is now a new Map([['a', '1'], ['b', '2']])

//OR
const newMap = toMap([1, 2, 3], (value, idx) => [idx, value * 2])
// newMap is now a new Map([[0, 2], [1, 4], [2, 6]])

retryable

import { retryable } from '@fettstorch/jule'
// run an action and retry it on demand. `retry` throws under the hood, so
// it never returns and re-invokes the action after an optional backoff —
// meaning any code after a `retry` call is effectively dead, even though
// TS's control-flow analysis isn't clever enough to grey it out for you.
const user = await retryable(async ({ retry, tryCount }) => {
  const response = await fetch('/api/user')
  if (!response.ok) {
    retry({ backoffMs: 250 * tryCount }) // nothing below this line runs 👍
  }
  return response.json()
})
// works synchronously too — the return type mirrors the action's
const value = retryable(({ retry, tryCount }) => {
  if (tryCount < 3) retry({ backoffMs: 0 })
  return tryCount // 3
})