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

@appspacer/react-native

v1.0.0

Published

Professional-grade Over-The-Air (OTA) update SDK for React Native. Push JavaScript bundle updates directly to users with built-in rollback protection, asset management, and premium UI themes.

Downloads

142

Readme

@appspacer/react-native

Production-grade OTA update SDK for React Native — push JavaScript bundle updates directly to users' devices with reliability and safety.

Full Documentation →

Installation

npm install @appspacer/react-native
cd ios && pod install

2. iOS — Update AppDelegate

#import <AppSpacerModule.h>

- (NSURL *)bundleURL {
  return [AppSpacerModule bundleURL];
}

3. Android — Update MainApplication

import com.appspacer.AppSpacerModule;
import com.appspacer.AppSpacerPackage;

// In getPackages():
packages.add(new AppSpacerPackage());

// In getJSBundleFile():
String customBundle = AppSpacerModule.getCustomBundlePath(this);
if (customBundle != null) return customBundle;
return super.getJSBundleFile();

Usage

Simple (CodePush-style HOC)

The easiest way to use AppSpacer is to wrap your root component with the withAppSpacer Higher-Order Component. This automatically checks for updates on app start and resume, and seamlessly shows a native "Update Available" popup if you enable updateDialog.

import { withAppSpacer } from '@appspacer/react-native';

function App() {
  return <MainApp />;
}

export default withAppSpacer({
  deploymentKey: 'sk_YOUR_DEPLOYMENT_KEY',
  appVersion: '1.0.0',
  updateDialog: true, // Shows a native alert to the user when an update is found
})(App);

With UI control

import { useAppSpacerUpdate, UpdateStatus, InstallMode } from '@appspacer/react-native';
import { Button, Text, View } from 'react-native';

function App() {
  const { status, update, sync, restartApp } = useAppSpacerUpdate();

  useEffect(() => {
    sync({ installMode: InstallMode.ON_NEXT_RESTART });
  }, []);

  return (
    <View>
      {status === UpdateStatus.INSTALLED && (
        <Button title="Restart to apply update" onPress={restartApp} />
      )}
      {status === UpdateStatus.UPDATE_AVAILABLE && update && (
        <Text>Update available: {update.description}</Text>
      )}
      <MainApp />
    </View>
  );
}

API

| Method | Description | |---|---| | withAppSpacer(config) | HOC to initialize and auto-sync SDK | | AppSpacer.checkForUpdate() | Check server for updates | | AppSpacer.downloadUpdate() | Download and verify pending update | | AppSpacer.restartApp() | Reload app with new bundle | | AppSpacer.sync(opts?) | Check + download + install lifecycle | | AppSpacer.notifyAppReady() | Mark update as successful (rollback protection) | | useAppSpacerUpdate() | React hook for management |

For the full API reference, configuration options, and advanced usage see the AppSpacer Documentation.

Safety Features

  • SHA256 Verification: Every package is verified before extraction.
  • Rollback Protection: If an update crashes during boot, the SDK automatically rolls back to the previous stable version.
  • Install Reporting: Adoption tracking and successful install analytics are automatically reported to your AppSpacer dashboard.

License

MIT — see LICENSE