
Security News
Open VSX Unblocks Extension IDs Used in Malware Campaign
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.
@prisma/streams-local
Advanced tools
Node and Bun local Prisma Streams runtime for trusted development workflows.
This directory contains the generated Node/Bun-compatible package artifacts for
the published @prisma/streams-local runtime.
Prisma Streams local is a trusted-development Durable Streams server intended
for embedded workflows such as prisma dev.
It keeps all state in a single local SQLite database and supports the live / touch system, but it does not run the full production segmenting and object store pipeline.
The embedded local runtime always applies the built-in 1024 MB auto-tune
preset, so Prisma CLI gets a predictable cache and concurrency budget and the
same current HTTP surface, including GET /v1/server/_details.
Published runtime floor:
>=1.2.0>=22@prisma/streams-local@prisma/streams-local/internal/daemon (internal Prisma CLI plumbing)The full self-hosted server remains Bun-only and is not part of this local build surface.
@prisma/streams-local.state-protocol profile via /_profile./touch/meta and /touch/wait to drive invalidation.Programmatic example:
import { startLocalDurableStreamsServer } from "@prisma/streams-local";
const server = await startLocalDurableStreamsServer({
name: "default",
hostname: "127.0.0.1",
port: 0,
});
console.log(server.exports.http.url);
console.log(server.exports.sqlite.path);
await server.close();
Daemon example:
import { fork } from "node:child_process";
const child = fork(require.resolve("@prisma/streams-local/internal/daemon"), [
"--name",
"default",
"--port",
"0",
], {
stdio: "inherit",
});
See ../docs/overview.md and ../docs/local-dev.md for the full runtime and release documentation.
FAQs
Node and Bun local Prisma Streams runtime for trusted development workflows.
We found that @prisma/streams-local demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.

Security News
Open VSX has removed three extension IDs from its malicious-extension list as the legitimate publishers they impersonated move to claim the names for themselves.

Product
Socket’s PHP and Composer support is now in Beta for all customers, with PHP reachability analysis generally available.

Product
Socket is bringing experimental protection to Firefox, scanning 97,000+ extensions in Mozilla's official directory for malware and risky updates.