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

@repliql/utils

v0.1.0

Published

> Shared utilities for the [RepliQL](https://github.com/Pierre-Elie/repliql) monorepo — hashing, stable serialization, GraphQL execution, URQL operation helpers, and more.

Downloads

69

Readme

@repliql/utils

Shared utilities for the RepliQL monorepo — hashing, stable serialization, GraphQL execution, URQL operation helpers, and more.

Tree-shakable: every export lives in its own module and the package is marked "sideEffects": false, so bundlers drop whatever you don't import.

Install

npm install @repliql/utils
# or
bun add @repliql/utils

No peer dependencies — all runtime dependencies (@0no-co/graphql.web, @urql/core, wonka, @solana/fast-stable-stringify, strict-event-emitter) are bundled as regular dependencies.

What's inside

Primitives & equality

  • isPrimitive(value) / Primitive — type guard for string | number | boolean | bigint | null | undefined.
  • areEqual(a, b) — structural equality for primitives, plain objects, and arrays.
  • phash(value) / HashValue — fast non-cryptographic hash, suitable for cache keys.
  • stableStringify(value) — deterministic JSON.stringify (keys sorted) re-exported from @solana/fast-stable-stringify. Equal values always produce equal strings.
  • randomId() — short non-cryptographic random identifier.
import { phash, stableStringify } from '@repliql/utils'

const key = phash(stableStringify({ b: 1, a: 2 }))

Reactive helpers

  • SourceMap — a Map-like cache of wonka Sources that creates and shares streams on demand.
  • EventEmitter — a tiny strictly-typed event emitter (re-exporting strict-event-emitter semantics).

Logging

  • makeLogger({ prefix?, level? }) — leveled debug / info / warn / error logger with prefix support. Honors a configurable level threshold.

Heartbeat

GraphQL

  • execute({ compiled, variableValues, fieldResolver, context }) / compile(document) — minimal GraphQL executor with custom field resolvers, no schema required.
  • FieldResolver, ResolveInfo, ExecutionResult, CompiledOperation — types for the executor.
  • transformQueryData(...) — walk a query's response shape and rewrite values per field.
  • getFullFieldName({ name, args }) — stable string identity for a field+args pair, suitable for caching.
  • Entity helpersEntity, EntityRef, EntityPointer, getEntityRef, isEntityHandle and friends for normalized-cache style entity addressing (__typename + id).

URQL helpers

  • makeOperationsRegistry({ kinds, eviction, onAdd }) — registry that tracks live URQL operations and evicts them based on a strategy (immediate or delayed).
  • ensureOperationId(ops$) — operator that stamps an OperationHandle onto every operation passing through.
  • getOperationHandle(operation) / OperationHandle — stable cross-process identifier for a URQL operation.
  • mapTypeNames(operation) — adds __typename selections to outgoing queries.
  • getCacheOutcome(result) / setCacheOutcome(result, 'hit' | 'miss') — read/write a cache-outcome marker on OperationResult.

Usage

import {
  ensureOperationId,
  getOperationHandle,
  makeOperationsRegistry,
  setCacheOutcome,
} from '@repliql/utils'

Each helper is documented at its source module — most are small, focused functions that compose into the higher-level packages in the RepliQL monorepo.

Status

Internal utility package for RepliQL. APIs may change between minor versions.

License

MIT