@0x0006e/hybrid-js-sdk
v1.0.5
Published
Hybrid-JS-SDK
Readme
Hybrid JS-SDK
Core
Web -> Native
Native inject global function into browser:
- iOS: window.webkit.messageHandlers.nativeApp.postMessage
- Android: window.nativeApp.sendToNative
Native -> Web
Web define two methods to window:
- window.webApp.callback
- window.webApp.dispatch
Install & API
by using npm:
$ npm install @0x0006e/hybrid-js-sdkor by using yarn:
$ yarn add @0x0006e/hybrid-js-sdkWeb -> Native
- Web dispatch
eventto native
hybrid.dispatch(event, params).then(console.log);- Web handle native dispatch
event
const unsubscribe1 = hybrid.listen(event, callback);
const unsubscribe2 = hybrid.listen(event, callback);- unsubscribe
event
unsubscribe1()Native -> Web
- Native dispatch
eventto web
webApp.dispatch(event, params);- Native handle web dispatch
event
setTimeout(() => {
webApp.callBack(eventId, params);
});Preview
git clone https://github.com/0x0006e/Hybrid-JS-SDK.git
cd Hybrid-JS-SDK/examples
yarn && yarn startTODO
- [ ] tests
- [x] workflow CI CD
- [ ] lint
Others
- PR thanks!
