@0x0006e/hybrid-js-sdk 中文文档教程

发布于 4年前 浏览 30 项目主页 更新于 3年前

Hybrid JS-SDK

Core

Web -> Native

Native 将全局函数注入浏览器:

  • iOS: window.webkit.messageHandlers.nativeApp.postMessage
  • Android: window.nativeApp.sendToNative

Native -> Web

Web 为窗口定义了两种方法:

  • window.webApp.callback
  • window.webApp.dispatch

Install & API

使用 npm:

$ npm install @0x0006e/hybrid-js-sdk

或使用 yarn:

$ yarn add @0x0006e/hybrid-js-sdk

Web -> Native

examples/src/index.js

  • Web dispatch event to 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

examples/src/index.js

  • Native dispatch event to 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 start

TODO

  • [ ] tests
  • [x] workflow CI CD
  • [ ] lint

Others

  • PR thanks!

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-sdk

or by using yarn:

$ yarn add @0x0006e/hybrid-js-sdk

Web -> Native

examples/src/index.js

  • Web dispatch event to 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

examples/src/index.js

  • Native dispatch event to 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 start

TODO

  • [ ] tests
  • [x] workflow CI CD
  • [ ] lint

Others

  • PR thanks!
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文