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

@goliapkg/sentori-expo

v0.1.2

Published

Expo adapter for Sentori — Config Plugin marker, expo-application auto-config, EAS post-build helper. Built on @goliapkg/sentori-react-native.

Readme

@goliapkg/sentori-expo

Expo adapter for Sentori — Config Plugin marker, runtime init helper that reads expo-application, and an EAS post-build hook for source map uploads. Built on @goliapkg/sentori-react-native@>=0.2.0.

Install

bunx expo install @goliapkg/sentori-expo @goliapkg/sentori-react-native expo-application

Wire it up

1. app.json

{
  "expo": {
    "plugins": ["@goliapkg/sentori-expo"]
  }
}

The plugin is currently a marker — @goliapkg/sentori-react-native ships its own expo-module.config.json, podspec, and Android gradle, so Expo Modules autolinking handles the native side. The plugin entry gives us a stable extension point for future native config (SDK version banner, opt-in crash-handler tuning, etc.) without changing your app.json.

2. App.tsx

import * as Application from 'expo-application'
import { initSentoriExpo } from '@goliapkg/sentori-expo'

initSentoriExpo({
  application: Application,
  token: process.env.EXPO_PUBLIC_SENTORI_TOKEN!,
})

export default function App() { /* ... */ }

initSentoriExpo:

  • Derives the release string applicationId@version+build from expo-application.
  • Defaults the environment to dev/prod via the RN __DEV__ flag.
  • Defaults the ingest URL to the public SaaS endpoint.

You can override any of those — see InitOptions.

If you're not on Expo's managed workflow, omit application and pass release explicitly:

initSentoriExpo({
  release: '[email protected]+42',
  token: process.env.EXPO_PUBLIC_SENTORI_TOKEN!,
})

3. EAS source map upload (optional, recommended)

Add to eas.json:

{
  "build": {
    "production": {
      "hooks": {
        "postPublish": [
          {
            "config": "@goliapkg/sentori-expo/eas-post-build",
            "options": {
              "release": "$EAS_BUILD_RELEASE"
            }
          }
        ]
      }
    }
  }
}

The hook shells out to @goliapkg/sentori-cli upload sourcemap — install it as a dev dep:

bun add -D @goliapkg/sentori-cli

Status: Phase 22 sub-A lands the actual upload sourcemap and upload dsym CLI subcommands. Until then the hook logs a warning and exits 0 — adopt the wiring now and the upload works transparently when you next bump @goliapkg/sentori-cli.

What initSentoriExpo does under the hood

@goliapkg/sentori-expo
  └── reads expo-application metadata
  └── calls @goliapkg/sentori-react-native init({ token, release, ... })
        └── starts the JS-layer global error / promise / network hooks
        └── primes the native iOS / Android crash handlers

The full feature list (breadcrumbs, capture, network instrumentation, native crash capture) lives in @goliapkg/sentori-react-native-expo only adds the auto-config + EAS plumbing.