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

@reactvision/react-native-visionos

v0.86.4

Published

React Native for visionOS

Readme

React Native for visionOS, By ReactVision

React Native for visionOS lets you build Apple Vision Pro apps with React Native. It is an out-of-tree platform: your project keeps its ios/ and android/ folders and gains a visionos/ one, all three driven by the same JavaScript.

This fork exists so that ViroReact can render spatial scenes on visionOS. It is useful on its own for any React Native app targeting the platform.

MIT licensed and free forever.

Attribution

This work stands on two others, and neither is ours:

  • React Native is built by Meta and its contributors. This repository is a fork of it, and every commit of that history is preserved here.
  • visionOS support was created by Callstack. The platform, the Swift app scaffolding, the visionos resolver — that design is theirs. ReactVision continues it from React Native 0.86 onward.

Supported versions

| React Native | Package | Status | | --- | --- | --- | | 0.86.x | @reactvision/[email protected] | ✅ Current | | 0.79.6 and earlier | @callstack/react-native-visionos | Callstack's releases |

The package version tracks the React Native line it is built from — 0.86.x is React Native 0.86 with visionOS support added. Install it alongside react-native, not instead of it.

The patch numbers are independent, and deliberately so: this package's own fixes ship without waiting for an upstream release, so 0.86.4 is built from upstream 0.86.3. reactNativeUpstreamVersion in packages/react-native/package.json names the release the prebuilt artifacts come from, because the Core and Dependencies xcframeworks are fetched from Maven under that number and Gradle resolves com.facebook.react:react-android the same way. Without the split, a patch upstream has not made points every lookup at a version nobody published — which fails quietly, by falling back to building React Native from source.

Installation

npm install @reactvision/react-native-visionos

Then create the visionos/ folder once, and build:

npx expo prebuild
cd visionos && pod install

Platform.OS is "ios" on visionOS — the platform keeps the iOS identity so that the ecosystem's iOS code paths work unchanged. Branch on the platform only where you genuinely need to.

Using it with ViroReact

If you want 3D, AR or VR content rather than 2D UI, this fork is the foundation and ViroReact is the renderer on top. Its config plugin wires up everything this platform needs — pods, the Metro resolver, the immersive space scene, the Xcode bundling phase — so a Viro project needs no manual visionOS setup.

See the ViroReact visionOS guide for the full walkthrough.

What this adds to React Native

  • A visionos platform target, resolved through @callstack/out-of-tree-platforms
  • SwiftUI app scaffolding with WindowGroup and ImmersiveSpace scenes
  • WindowManager and XR native modules for opening windows and immersive spaces from JavaScript
  • visionOS-aware podspecs and build settings across React Native's own pods

Documentation

React Native's own documentation applies unchanged for everything that is not visionOS-specific: https://reactnative.dev/docs/getting-started

For ViroReact and spatial rendering: https://viro-community.readme.io/docs/overview

Community

Discord is the best place to find the team and other developers building with ReactVision:

Contributing

Issues and pull requests are welcome. Changes that belong upstream — in React Native itself, or in Callstack's visionOS work — are better sent there, and this fork will pick them up on the next rebase.

Find Out More

A little history…

React Native was open-sourced by Meta in 2015. Callstack added visionOS as an out-of-tree platform in 2024, carrying it to React Native 0.79. ReactVision picked it up from 0.86 to keep ViroReact shipping on Apple Vision Pro, and maintains this fork in the open.


MIT licensed. React Native is © Meta Platforms, Inc. and affiliates; visionOS support is © Callstack and © ReactVision, Inc.