Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@iadev93/zuno-express

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iadev93/zuno-express

Express adapter for Zuno.

latest
Source
npmnpm
Version
0.0.11
Version published
Maintainers
1
Created
Source

@iadev93/zuno-express

Express adapter for Zuno.

Provides server-side synchronization endpoints using Server-Sent Events (SSE) for Express applications.

Install

npm install @iadev93/zuno-express

Peer dependency:

  • express >= 4

Usage

import express from "express";
import { createZunoExpress } from "@iadev93/zuno-express";

const app = express();
app.use(express.json());

const zuno = createZunoExpress({
  batchSync: true // Optional: Enable batching
});

// Unified handlers
app.get("/zuno/sse", zuno.sse);
app.post("/zuno/sync", zuno.sync);
app.get("/zuno/snapshot", zuno.snapshot);

app.listen(3000);

API

createZunoExpress(opts?)

Returns an object containing the following Express handlers:

sse (GET)

Handles persistent SSE connections, heartbeats, and initial synchronization.

sync (POST)

Validates and applies incoming state events.

snapshot (GET)

Returns the current full state of the universe.

What It Does NOT Do

  • No WebSockets
  • No framework‑specific state
  • No persistence layer

If you’re using Zuno in a real project, please open an issue and tell us your use case.

License

MIT

Keywords

zuno

FAQs

Package last updated on 08 Feb 2026

Did you know?

Socket

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.

Install

Related posts