Questions tagged [react-native-jsi]
6 questions
12
votes
1 answer
What's the difference between bridging a module with C++ or with JSI in React Native?
In React Native it is possible to bring native functionality from Android and iOS in multiple ways.
I always thought that all possible ways were limited by platform-related languages like Java/Kotlin and Objective-C/Swift. However, I noticed that it…

Enzo Manuel Mangano
- 491
- 4
- 9
2
votes
1 answer
React Native JSI: How to call any javascript function from native?
I need to have a callback function to listen for some events in native module and transfers data from native to javascript and I want to call this javascript function from native directly in React Native iOS app without sending events to…

iUrii
- 11,742
- 1
- 33
- 48
1
vote
1 answer
Access JSCall Invoker via the bridge in React Native Module
I am trying to access the jsCallInvoker method which is a reference to the JS thread on the react native bridge, but in xcode i dont see the reference to the method, i have forked the react-native-mmkv library but havent got access to the above…

Nitish Phanse
- 552
- 1
- 9
- 16
1
vote
0 answers
How do I intigrade C++ code with React Native JSI
I want to use C++ code to write algorithms in both android & ios apps, can I do it with the help of react native JSI what is the step by step process of integrating C++ Code in my React Native Project

Venda
- 167
- 1
- 4
- 15
1
vote
1 answer
React Native JSI: How to call expose a promised function from native to javascript
I need to use my custom native fetch function from javascript code on my React Native iOS app and it must be asynchronous and works the same as standard one. I want to implement it with React Native JSI so how to expose asynchronous function to…

iUrii
- 11,742
- 1
- 33
- 48
1
vote
1 answer
React Native JSI: How to expose a native object to javascript code
I use RN 0.66.3 and want to make direct sync calls from javascript to native code in my iOS React Native project to share data without using the React Native Bridge for performance purposes so that I need to have a shared global object and access to…

iUrii
- 11,742
- 1
- 33
- 48