react-native-worklets-core icon indicating copy to clipboard operation
react-native-worklets-core copied to clipboard

🧵 A library to run JS functions ("Worklets") on separate Threads

Results 74 react-native-worklets-core issues
Sort by recently updated
recently updated
newest added

### What's happening? I'm trying to use the Frame Processors feature of react-native-vision-camera, so I installed react-native-worklets-core following the troubleshooting steps mentioned [here](https://www.react-native-vision-camera.com/docs/guides/troubleshooting). Platform iOS in Podfile is 13.0 and...

Hello Team Thanks for bringing this package. I've been trying to install it in my JavaScript project (no typescript) and I've been having issues not being able to execute the...

My goal is to utilize useSharedValue to mimic the functionality of use/setState within Vision Camera v3 frame processors. With reanimated I would have this code which uses runOnJS to set...

Error: ``` FAILURE: Build failed with an exception. * Where: Build file '/Users/eisodev/rubic/rubic-connect/node_modules/react-native-worklets-core/android/build.gradle' line: 38 * What went wrong: A problem occurred evaluating project ':react-native-worklets-core'. > Could not get unknown...

Is it possible to use async/await within Worklets? I'm trying to make calls to asynchronous functions outside of the function tagged with the worklet keyword? As a simple example, is...

https://github.com/mrousavy/react-native-vision-camera/issues/1953

1. object spread is not working 2. array is converted to object ```js // from worklets export workletFun = createRunInContextFn(() => { 'worklet'; return {test_arr: [1,2]}; }) // rn js...

Hi, I'm using `react-native-worklets` to test `react-native-vision-camera` v3. I'm receiving the following error: ``` index.js: [babel]: Cannot find module 'string-hash-64' ``` Before I upgraded to XCode 14.3 it used to...

Could it potentially be used to run a wasm blob parallel to the actual app and communicating with it? 🤔

Thank you for creating such a great library! Recently, while working on my project, I realized that using proxied objects is not always the best approach. I understand that there...