A VNC/Websocket UI bridge to distant running Speculos devices
npm install @ledgerhq/speculos-webA VNC/Websocket UI bridge to distant running Speculos devices

Register your transport:
``ts
import { registerTransportModule } from "@ledgerhq/live-common/lib/hw";
import { createSpeculosWebTransport } from "@ledgerhq/speculos-web";
registerTransportModule({
id: "speculos-web",
open: (id: string) => {
if (id !== "speculos-web") return;
return createSpeculosWebTransport();
},
disconnect: () => null,
});
`
Use the component:
`tsx
import { SpeculosWeb } from "@ledgerhq/speculos-web";
function MyApp() {
return (