
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@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.
The npm package @prisma/streams-local receives a total of 4,103,011 weekly downloads. As such, @prisma/streams-local popularity was classified as popular.
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.
Did you know?

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.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.