Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@openfin/cloud-interop
Advanced tools
This package contains an override that enables Cloud Interop for OpenFin `InteropBroker`'s unlocking Interop across applications and devices.
This package contains an override that enables Cloud Interop for OpenFin InteropBroker
's unlocking Interop across applications and devices.
Overrides are passed to fin.Platform.init
when initializing a platform or to fin.Interop.init
when creating an InteropBroker
directly.
Once overriden the InteropBroker
will connect to Cloud Interop. Context
will be sent to the Cloud Interop server and the broker will receive Context
updates from other any other connected brokers in the shared session.
Using the service currently requires user credentials provided by OpenFin, please contact support@openfin.co.
In a Platform:
import { cloudInteropOverride } from "@openfin/cloud-interop";
import { ExampleOverride } from "./example";
const cloudConfig = {
userId: "andy", // Credentials provided by OpenFin
password: "asdf1234", // Credentials provided by OpenFin
platformId: "8cef8205-d5a8-41c4-b368-47475b32c019", // Shared identifier for apps that should communicate
url: "<CLOUD_INTEROP_SERVER_URL>",
sourceId: fin.me.identity.uuid,
source: "Desktop",
};
const InitializedCloudInteropOverride = await cloudInteropOverride(cloudConfig);
// Ordering is important, ensure Cloud Interop Override is at the end of the list to send overriden Context to the cloud
await fin.Platform.init({
interopOverride: [ExampleOverride, InitializedCloudInteropOverride],
});
When creating an InteropBroker
directly:
import { cloudInteropOverride } from "@openfin/cloud-interop";
const cloudConfig = {
userId: "andy", // Credentials provided by OpenFin
password: "asdf1234", // Credentials provided by OpenFin
platformId: "8cef8205-d5a8-41c4-b368-47475b32c019", // Shared identifier for apps that should communicate
url: "<CLOUD_INTEROP_SERVER_URL>",
sourceId: fin.me.identity.uuid,
source: "Desktop",
};
const InitializedCloudInteropOverride = await cloudInteropOverride(cloudConfig);
await fin.Interop.init(fin.me.uuid, InitializedCloudInteropOverride);
FAQs
This package contains an override that enables Cloud Interop for OpenFin `InteropBroker`'s unlocking Interop across applications and devices.
We found that @openfin/cloud-interop demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 58 open source maintainers 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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.