The main entry point for leveraging OpenFin Web Interop in a web application.
This module provides a way to connect to an OpenFin Web Interop broker, which allows for communication between Web applications.
import { connect } from '@openfin/core-web';const fin = await connect({ options: { brokerUrl: 'ws://localhost:9696/broker' interopConfig: { providerId: 'my-provider-id', currentContextGroup: 'my-context-group' } } }); Copy
import { connect } from '@openfin/core-web';const fin = await connect({ options: { brokerUrl: 'ws://localhost:9696/broker' interopConfig: { providerId: 'my-provider-id', currentContextGroup: 'my-context-group' } } });
The main entry point for leveraging OpenFin Web Interop in a web application.
Remarks
This module provides a way to connect to an OpenFin Web Interop broker, which allows for communication between Web applications.
Example