
Product
A New Overview in our Dashboard
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
event-driven-webview-bridge-react
Advanced tools
The `event-driven-webview-bridge-react` library enables seamless and structured communication between React Native applications and web content within WebViews. By utilizing an event-driven architecture, it allows the WebView layers to send message
The event-driven-webview-bridge-react
library enables seamless and structured communication between React Native applications and web content within WebViews.
By utilizing an event-driven architecture, it allows the WebView layers to send messages, trigger actions, and handle responses with ease.
The library provides a plugin-based design for extending functionality, ensuring that complex interactions are managed efficiently.
Additionally, it includes built-in mechanisms for type safety, message queuing, and error handling, making it a robust solution for integrating React Native applications and web-based interfaces.
Event-Driven Communication: Centralized event handling for all message exchanges between the react native app and WebView.
Plugin-Based Architecture: Easily extend the bridge's functionality using plugins for different purposes such as navigation, state management, and custom logic.
Promise-Based Messaging: All messages sent to the react native app are handled asynchronously, making it straightforward to manage request-response patterns.
Type Safety: Enjoy type inference for all communication-related code, reducing runtime errors and improving developer experience.
Queue Management: A built-in queue mechanism for handling message delivery to the react native app, ensuring reliable communication even when the window.ReactNativeWebView is not ready.
Guaranteed Message Order: All outgoing messages are processed using a timestamp-based sequential handling mechanism, ensuring that messages are delivered in the correct order even when multiple messages are sent concurrently.
Install the package via your preferred package manager:
# Using npm
npm install event-driven-webview-bridge-react
# Using yarn
yarn add event-driven-webview-bridge-react
# Using pnpm
pnpm add event-driven-webview-bridge-react
The basic setup involves creating a bridge instance, registering plugins, and managing communication events.
Here's a quick overview:
Set up the Bridge
Import the library and initialize the bridge by providing a WebView reference.
import ReactWebViewBridge from "event-driven-webview-bridge-react";
// Initialize the bridge with plugins
const bridge = ReactWebViewBridge.getInstance({
plugins: {
// Define your custom plugins here
},
});
Trigger Plugin Actions
The library's plugin-based architecture allows you to modularize your logic.
After defining your plugins during the bridge initialization (getInstance
), you can easily trigger their actions using the bridge.
// Trigger plugin actions with parameters specific to your plugin after specifying the plugin name.
bridge.triggerPluginActions("yourPluginName", {
/* your parameters here */
});
Post Messages to the React Native App
Use the postMessage method to send data to the WebView and receive a response asynchronously.
const response = await bridge.postMessage({
type: "navigation",
data: { targetScreen: "HomePage" },
});
Handle Incoming Messages
Set up message handlers to properly process and respond to messages sent from the React native app to the WebView. This ensures smooth communication and allows your web to app to various events triggered from the app.
bridge.onMessage("toRNMessage", (message: MessagePayload) => {
setMessage(`${message.type}: ${message.data}`);
});
One of the core strengths of event-driven-webview-bridge-react
is its plugin-based design.
You can define and use plugins to encapsulate specific logic and manage complex interactions.
Creating a Plugin
To create a plugin, define a module that adheres to the following interface:
import { WebViewBridgePlugin } from "event-driven-webview-bridge-core/core/Plugin";
interface WebViewBridgePlugin {
execute: (params: any) => void;
cleanup?: () => void;
}
const customPlugin = new WebViewBridgePlugin((message: string) => {
console.log("Custom plugin executed with:", message);
});
Adding Plugins to the Bridge
Plugins can be registered during the bridge initialization:
const bridge = ReactWebViewBridge.getInstance({
plugins: { customPlugin },
});
Class: ReactWebViewBridge<P extends PluginMap>
This class manages the communication between a React Native app and a WebView by using a plugin system.
It allows for sending messages, triggering plugin actions, and handling incoming messages from the React Native App.
pluginManager:
WebViewBridgePluginManager
responsible for managing registered plugins.messageEventHandler:
ReactMessageEventHandler
that handles incoming message events.messageQueue:
ReactMessageQueue
that manages the queuing of messages sent to the React Native App.getInstance<P extends PluginMap>(options: WebBridgeOptions<P>): ReactWebViewBridge<P>
Description:
ReactWebViewBridge
. If no instance exists, it creates one with the provided options.Parameters:
options
: An object containing the following properties:
plugins
: An object mapping plugin names to their instances.Returns:
ReactWebViewBridge
.cleanup(): void
Description:
Returns:
triggerPluginActions<K extends keyof P>(pluginName: K, ...args: Parameters<P[K]["execute"]>): void
Description:
Parameters:
pluginName
: The name of the plugin to trigger....args
: The arguments to pass to the plugin's execute method.Returns:
postMessage(message: { type: MessagePayload["type"]; data: MessagePayload["data"] }): Promise<{ success: boolean }>
Description:
Parameters:
message
: An object containing:
type
: The type of the message.data
: The payload of the message.Returns:
addMessageHandler(type: MessagePayload["type"], handler: MessageHandlerFunction): void
Description:
Parameters:
type
: The type of message to handle.handler
: A function that handles the message event.Returns:
onMessage(event: WebViewMessageEvent): void
Description:
Parameters:
event
: The WebView message event.Returns:
getPlugins(): P
Description:
Returns:
isReactNativeWebView(): boolean
Description:
Returns:
We welcome contributions!
Please see our Contributing Guide for details on how to get involved.
event-driven-webview-bridge-react
is licensed under the MIT License.
See the LICENSE file for more information.
FAQs
The `event-driven-webview-bridge-react` library enables seamless and structured communication between React Native applications and web content within WebViews. By utilizing an event-driven architecture, it allows the WebView layers to send message
The npm package event-driven-webview-bridge-react receives a total of 2 weekly downloads. As such, event-driven-webview-bridge-react popularity was classified as not popular.
We found that event-driven-webview-bridge-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
We redesigned Socket's first logged-in page to display rich and insightful visualizations about your repositories protected against supply chain threats.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.