Detalhes do pacote

@tanstack/devtools-event-bus

TanStack206.9kMIT0.3.2

TanStack Event Bus is a lightweight event bus for TanStack Devtools.

devtools

readme (leia-me)

@tanstack/devtools-event-bus

This package is still under active development and might have breaking changes in the future. Please use it with caution.

General Usage

Server Event Bus

import { ServerEventBus } from '@tanstack/devtools-event-bus/server'
// Start the server event bus
const devtoolsServer = new ServerEventBus()

devtoolsServer.start()

export { devtoolsServer }

Client Event Bus

import { ClientEventBus } from '@tanstack/devtools-event-bus/client'
// Start the client event bus
const devtoolsClient = new ClientEventBus()

devtoolsClient.start()

export { devtoolsClient }

Plugins

Check out @tanstack/devtools-event-client for more information on how to create plugins for the event bus.