
Security News
/Research
Popular node-ipc npm Package Infected with Credential Stealer
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.
@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 2,398,055 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 7 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
/Research
Socket detected malicious node-ipc versions with obfuscated stealer/backdoor behavior in a developing npm supply chain attack.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.