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

@remetry/browser

v1.1.0

Published

Remetry browser SDK — error, performance, API and session-replay monitoring for web apps.

Readme

@remetry/browser

Browser SDK for Remetry — error, performance, API and session-replay monitoring for web apps. ESM-only.

Install

npm install @remetry/browser
# session replay is optional and lazy-loaded:
npm install [email protected]

Quick start

import { init, errorsPlugin, performancePlugin, apiPlugin, replayPlugin } from "@remetry/browser";

init({
  dsn: "<your-public-dsn>",
  endpoint: "https://<your-ingest-host>/ingest/events",
  release: "1.0.0",
  integrations: [errorsPlugin(), performancePlugin(), apiPlugin(), replayPlugin()],
});

React error boundary (separate entry, so non-React hosts never pull in React):

import { ErrorBoundary } from "@remetry/browser/react";

<ErrorBoundary fallback={<Crashed />}>
  <App />
</ErrorBoundary>;

Entry points

  • @remetry/browserinit, captureError, captureEvent, flush, getSessionId, shutdown, getClient, plus the errorsPlugin, performancePlugin, apiPlugin and replayPlugin integrations.
  • @remetry/browser/reactErrorBoundary.

Peer dependencies

  • react (optional) — only for the /react entry.
  • [email protected] (optional) — only when you use replayPlugin(); loaded dynamically.

Development

pnpm install
pnpm test         # vitest (jsdom)
pnpm typecheck
pnpm build        # tsup -> dist/ (ESM + bundled .d.ts)

The wire-format types live in src/contracts/ — an inlined copy of the @remetry/contracts package from the Remetry monorepo. They are bundled into dist at build time (tsup noExternal + dts.resolve), so the published package has zero @remetry/* dependencies. The two entry points share one chunk via code-splitting, so init() and the React <ErrorBoundary> bind to the same client instance.

Releases & versioning

Releases are fully automated with semantic-release. Every push to main:

  1. analyzes commit messages (Conventional Commits),
  2. computes the next version (fix: → patch, feat: → minor, feat!: / BREAKING CHANGE: → major),
  3. builds, publishes to npm, tags the release, and updates CHANGELOG.md + the GitHub release.

There is no manual version bump — the version in package.json is a placeholder. The first release on a fresh repo publishes 1.0.0.

Commit examples:

| Commit | Bump | | --- | --- | | fix: guard against missing navigator | patch | | feat: add offline event buffering | minor | | feat!: rename endpoint option | major |

Required GitHub repo secrets

| Secret | Purpose | | --- | --- | | NPM_TOKEN | npm automation token with publish rights to the @remetry org | | GITHUB_TOKEN | provided automatically by GitHub Actions (no setup) |

npm provenance (optional): for a public repo you can add "provenance": true to publishConfig and NPM_CONFIG_PROVENANCE: "true" to the release job to get a verified npm provenance badge. Leave it off for private repos.

License

See LICENSE.md (FSL-1.1-ALv2).