A Simple Way To Run JS in Background Thread on React Native
CPU intensive tasks block UI, like indexing. Because, in React Native, JavaScript is executed on JavaScriptCore which means that you have only 1 thread. So you have to use a native module like react-native-workers which provides similar API as web workers. But it’s… Read More »A Simple Way To Run JS in Background Thread on React Native