Wire Meshes into Bolt-generated apps. One publishable key, every integration handled.
Add the dependency to your Bolt environment and configure your key.
npm install @mesheshq/events"Emit tracking events from Bolt UI components"
"Sync user data to HubSpot automatically"
"Route support tickets to Slack and Zendesk"
import { MeshesEventsClient } from "@mesheshq/events";
const meshes = new MeshesEventsClient(process.env.WORKSPACE_PUBLISHABLE_KEY!);
export function submitFeedback(text: string) {
meshes.emit({
event: "feedback_submitted",
payload: { text, source: "bolt_app" }
});
}Your Bolt app emits events to Meshes using the SDK. Meshes routes each event to every connected destination based on your workspace rules — no integration code in the Bolt app itself.
Meshes handles the last mile — reliable event delivery to every tool in your stack.
Free tier includes 100 events/month. Start in under 2 minutes.