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

@supa-media/metro

v1.0.1

Published

Metro bundler config factory for pnpm monorepos with Expo

Readme

@supa-media/metro

Metro config for an Expo app that lives inside a pnpm workspace. One factory that returns a ready config with the pnpm-specific resolver settings already correct, so metro.config.js stays two lines instead of forty.

Install

pnpm add -D @supa-media/metro

Peer dependency: @expo/metro-config — already present in every Expo app (the factory loads it through expo/metro-config). nativewind and @sentry/react-native are only needed if you opt into withNativeWind / withSentry; both are required lazily and fall back with a warning if absent.

Usage

// apps/mobile/metro.config.js
const { createMetroConfig } = require("@supa-media/metro");

module.exports = createMetroConfig({
  projectRoot: __dirname,
  sharedPackages: ["@myapp/shared"],
});

Options

| Option | Type | What it does | | --- | --- | --- | | projectRoot | string (required) | Absolute path to the app directory — pass __dirname. The workspace root is found by walking up from here for a pnpm-workspace.yaml or a package.json with workspaces (falling back to ../..). | | sharedPackages | string[] | Workspace package names to resolve from source, e.g. ["@myapp/shared"]. | | withNativeWind | boolean | Wraps the result with nativewind/metro, hardcoded to { input: "./global.css" }. | | withSentry | boolean | Uses getSentryExpoConfig as the base config instead of Expo's getDefaultConfig, for Debug ID injection. | | extend | (config) => config | Escape hatch, applied after the resolver setup and before NativeWind wrapping. |

What it actually sets

  • resolver.unstable_enableSymlinks: true and resolver.disableHierarchicalLookup: true — pnpm links every dependency, and without these Metro either refuses to follow the symlink or walks up out of the linked package into the wrong node_modules.
  • resolver.nodeModulesPaths: [<projectRoot>/node_modules, <workspaceRoot>/node_modules], in that order.
  • watchFolders: Expo's defaults plus the workspace root, each resolved shared package directory, and <workspaceRoot>/node_modules/.pnpm — the store is where the real files behind the symlinks live, so without it Metro watches links and misses edits. Non-existent paths are filtered out.
  • resolver.extraNodeModules[pkg] → the shared package's src/ if it exists, else its root.
  • resolver.resolveRequest: shared-package resolution first, then any resolveRequest the base config already had, then Metro's default.

For a shared package, imports of @myapp/shared and @myapp/shared/<subpath> resolve through the target package's exports map, falling back to src/<subpath> (or src/index.ts), and are returned as { type: "sourceFile" } — Metro compiles the TypeScript directly rather than a build output that may not exist during development.

⚠️ Shared packages are located by convention, not by node resolution. The scope is stripped from the name and the result is looked up at <workspaceRoot>/packages/<name>@myapp/shared must live at packages/shared. A package anywhere else is silently ignored: it drops out of watchFolders, extraNodeModules, and the custom resolver, and you fall back to whatever plain Metro resolution does.

No tests ship with this package.


Part of the Supa Media framework — https://github.com/Supa-Media/supa-framework. MIT.