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 🙏

© 2025 – Pkg Stats / Ryan Hefner

react-native-hermes-worker

v0.6.1

Published

A react-native js woker using hermes runtime

Readme

React Native Hermes Worker

A React Native library that enables JavaScript code execution in a separate thread using the Hermes engine.

Key Features

  • Run JavaScript code in a background thread to avoid blocking the main UI thread
  • Uses Hermes engine for JavaScript execution
  • Supports both old and new React Native architectures
  • Cross-platform support (iOS & Android)
  • TypeScript support

Installation

npm install react-native-hermes-worker
# or
yarn add react-native-hermes-worker

Babel Configuration

Add the Hermes Worker babel plugin to your app's babel.config.js:

module.exports = {
    plugins: [
    'react-native-hermes-worker/plugin'
    ]
};

This plugin transforms JavaScript functions into a format that can be executed in the worker thread.

Basic Usage

import { startProcessingThread, stopProcessingThread, enqueueItem } from 'react-native-hermes-worker';

// Start the worker thread
startProcessingThread();

// Execute code in background
const result = await enqueueItem(() => {
    // Heavy computation here
    return "computation result";
});

// Stop the worker thread when done
stopProcessingThread();

Custom Hermes Bytecode

You can compile custom JavaScript code into Hermes bytecode to initialize the worker thread with predefined functions.

1. Create Worker Code

Create a JavaScript file with your worker code:

// worker/index.js

// Define functions available to the worker
function heavyComputation(data) {
    // Your computation logic
    return result;
}

// Expose functions to the worker scope
globalThis.heavyComputation = heavyComputation;

2. Configure Worker Files

Create a hermes-workers.json in your project root:

[
    "./src/worker/index.js"
]

3. Compile Bytecode

Run the compile script from your project root:

npx compile-hermes-bundles

This will compile your worker files into Hermes bytecode. The compiled files will be placed in:

  • iOS: ios/assets/index.worker.bundle.hbc
  • Android: android/app/src/main/assets/index.worker.bundle.hbc

4. Platform-Specific Setup

iOS

You need to manually add the .hbc file to your Xcode project:

  1. Open your project in Xcode
  2. Right-click on your project's target
  3. Select "Add Files to [YourProject]"
  4. Navigate to ios/assets/
  5. Select index.worker.bundle.hbc
  6. Make sure "Copy items if needed" is checked
  7. Add to your main application target

Android

No additional setup required. The asset will be automatically bundled.

5. Use Custom Bytecode

// Initialize worker with custom bytecode
// Note: Only pass the base name of your entry file, without extensions
startProcessingThread('index');  // Will look for 'index.worker.bundle.hbc'

// Now you can call your predefined functions
const result = await enqueueItem('heavyComputation(data)');

Platform Requirements

  • iOS 15.1+
  • Android API level 24+
  • React Native 0.71.0+

Architecture Support

  • Supports both the old and new React Native architectures
  • Uses TurboModules when available
  • Falls back to the legacy native module system on older versions

Development Setup

# Install dependencies
yarn install

# Run example app
yarn example ios
# or
yarn example android

License

MIT License - see LICENSE file for details

Contributing

See CONTRIBUTING.md for details on how to contribute to this project.