Worker threads implementation for use within ReactNative & Hamsters.js, allowing you to make use of the multithreading and parallel processing in your ReactNative application.
npm install react-native-hamsters

This project is based on the work of several previous projects, this is a stand alone worker threads implementation for use within ReactNative and with Hamsters.js, allowing you to make full use of the multithreading and parallel processing in your React Native application.
npm install hamsters.js --savenpm install react-native-hamsters --save
- Worker Threads are paused when the app enters in the background
- Worker Threads are resumed once the app is running in the foreground
- During development, when you reload the main JS bundle (shake device -> Reload) the Worker Threads are killed
For android you will need to make a slight modification to your MainApplication.java
file. In the getPackages method pass in mReactNativeHost to the ReactNativeHamstersPackage
constructor:
``java`
@Override
protected List
return Arrays.
new MainReactPackage(),
new ReactNativeHamstersPackage(mReactNativeHost) // <-- Here
);
}
Also note that only the official react native modules are available from your
threads (vibration, fetch, etc...). To include additional native modules in your
threads, pass them into the ReactNativeHamstersPackage constructor after the mReactNativeHostnew ReactNativeHamstersPackage(mReactNativeHost, new ExampleNativePackage(), new SQLitePackage())
like this:
#### iOS
1. In XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name]node_modules
2. Go to ➜ react-native-hamsters and add react-native-hamsters.xcodeprojlibreact-native-hamsters.a
3. In XCode, in the project navigator, select your project. Add to your project's Build Phases ➜ Link Binary With LibrariesCmd+R
4. Run your project ()<
#### Android
1. Open up android/app/src/main/java/[...]/MainApplication.javaimport com.reactlibrary.ReactNativeHamstersPackage;
- Add to the imports at the top of the filenew ReactNativeHamstersPackage(mReactNativeHost)
- Add to the list returned by the getPackages() methodReactNativeHamstersPackage
- Also note that only the official react native modules are available from your
threads (vibration, fetch, etc...). To include additional native modules in your
threads, pass them into the constructor after the mReactNativeHostnew ReactNativeHamstersPackage(mReactNativeHost, new ExampleNativePackage(), new SQLitePackage())
like this:
2. Append the following lines to android/settings.gradle:
`java`
include ':react-native-hamsters'
project(':react-native-hamsters').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-hamsters/android')
android/app/build.gradle
3. Insert the following lines inside the dependencies block in :
`java`
compile project(':react-native-hamsters')
#### Windows
Windows support is not yet implemented, PRs are welcome if you want to give it a shot!(https://github.com/ReactWindows/react-native)
1. In Visual Studio add the react-native-hamsters.sln in node_modules/react-native-hamsters/windows/react-native-hamsters.sln folder to their solution, reference from their app.MainPage.cs
2. Open up your appusing ThreadReactNativeHamsters;
- Add to the usings at the top of the filenew ReactNativeHamstersPackage()
- Add to the List returned by the Packages method
To get started head to the ReactNative section of the [Hamsters.js Wiki
Instantiating Worker Threads creates multiple react native JS processes and can make debugging
remotely behave unpredictably. It's recommended to use a third party debugging tool like
Reactotron to aid with this. Each process,
including your main application as well as your thread code can connect to Reactotron
and log debugging messages.
You will need to manually bundle your thread files for use in a production release
of your app. This documentation assumes you have a single thread file called
reactNativeHamster.js in your project root. If your file is named differently or in
a different location, you can update the documented commands accordingly.
Note: If your single thread file is in a different location, the folder structure needs to
be replicated under ./ios and ./android/app/src/main/assets/threads.
`shell`
./node_modules/hamsters.js/build/common/reactNativeHamster.js => ./ios/App/reactNativeHamster.bundle
`shell`
node node_modules/react-native/local-cli/cli.js bundle --dev false --assets-dest ./ios --entry-file ./node_modules/hamsters.js/build/common/reactNativeHamster.js --platform ios --bundle-output ./ios/App/reactNativeHamster.bundle
Once you have generated the bundle file in your ios folder, you will also need to add
the bundle file to you project in Xcode. In Xcode's file explorer you should see
a folder with the same name as your app, containing a main.bundle file as wellappDelegate.m
as an file. Right click on that folder and select the 'Add Files to ios/reactNativeHamster.bundle
option, which will open up finder and allow you to select your
file. You will only need to do this once, and the file will be included in all future
builds.
For Android first copy reactNativeHamster.js from Hamsters.js /build/common/reactNativeHamster.js into the react native project root.
And then you can use the following command:
`shell`
rm -rf /tmp/metro-*
`shell``
react-native bundle --platform android --dev false --entry-file reactNativeHamster.js --bundle-output android/app/src/main/assets/reactNativeHamster.bundle --assets-dest android/app/src/main/res
For convenience I recommend adding these thread building commands as npm scripts
to your project.
Included in this repository is a simple example application demonstrating basic
usage of react-native-hamsters with Hamsters.js
Hamsters.js is a self funded project, in order to provide updates and host the project website I rely on donations. Please consider donating today so I can continue to support this project, thank you. Hamsters.js donation page