
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@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 3,937,434 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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.