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

munim-xr

v0.1.1

Published

Cross-platform XR sessions and native AR views for Expo and React Native, powered by Nitro Modules

Readme

Native ARKit and ARCore sessions for Expo and React Native, powered by Nitro Modules.

munim-xr provides a typed Nitro Hybrid View for world tracking, native camera rendering, plane detection, hit testing, anchors, camera poses, light estimation, optional depth, and snapshots on iOS and Android.

Install

npm install munim-xr react-native-nitro-modules

Expo projects can use:

npx expo install munim-xr react-native-nitro-modules

Then configure and rebuild the native app:

{
  "expo": {
    "plugins": [
      [
        "munim-xr",
        {
          "cameraPermission": "Allow $(PRODUCT_NAME) to use the camera for augmented reality.",
          "arRequired": false
        }
      ]
    ]
  }
}
npx expo prebuild
npx expo run:ios
# or: npx expo run:android

This package requires React Native's New Architecture and a native development build. It cannot run in Expo Go.

Usage

import { useMemo, useRef } from 'react'
import { StyleSheet } from 'react-native'
import { callback } from 'react-native-nitro-modules'
import {
  checkAvailability,
  requestCameraPermission,
  requestInstall,
  XRView,
  type XRViewRef,
} from 'munim-xr'

export function ARScene() {
  const xrRef = useRef<XRViewRef | null>(null)
  const hybridRef = useMemo(
    () => callback((ref: XRViewRef) => (xrRef.current = ref)),
    []
  )

  async function start() {
    if (!(await requestCameraPermission())) return
    const availability = await checkAvailability()
    if (availability === 'not-installed' || availability === 'update-required') {
      if (!(await requestInstall())) return
    }
    await xrRef.current?.start()
  }

  return (
    <XRView
      depthEnabled={false}
      frameCallbackFps={15}
      hybridRef={hybridRef}
      lightEstimationEnabled
      planeDetection="both"
      style={StyleSheet.absoluteFill}
    />
  )
}

Wrap hybridRef and event handlers with Nitro's callback(). The captured reference exposes start, pause, reset, hitTest, anchor management, camera pose, and snapshot methods.

const hits = await xrRef.current?.hitTest(0.5, 0.5)
if (hits?.[0]) {
  const anchor = await xrRef.current?.createAnchor(hits[0].pose)
  console.log(anchor?.id)
}

Requirements

  • React Native 0.78+ with the New Architecture
  • react-native-nitro-modules 0.36.5+
  • iOS 15.1+ on an ARKit-capable device
  • Android API 24+ with Google Play Services for AR
  • Expo development build or bare React Native app

See the complete documentation for the platform matrix, API reference, runtime notes, and development instructions.

License

Apache-2.0