
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@durable-streams/cli
Advanced tools
A command-line tool for interacting with durable streams.
# Install dependencies
pnpm install
# Build the CLI (for production bin)
pnpm build
For development, you can link the CLI globally with live TypeScript execution (no rebuild needed):
# From the CLI package directory
pnpm link:dev
# Now you can use durable-stream-dev anywhere
# Changes to src/index.ts are immediately available
durable-stream-dev create my-stream
This uses tsx to run the TypeScript source directly, so you see changes immediately without rebuilding.
The easiest way to get started is to run the local development server and use the CLI:
pnpm start:dev
This will start a Durable Streams server at http://localhost:4437 with live reloading.
# Set the server URL (optional, defaults to http://localhost:4437)
export STREAM_URL=http://localhost:4437
# Create a stream
durable-stream-dev create my-stream
# Write to the stream
durable-stream-dev write my-stream "Hello, world!"
# Read from the stream (follows live)
durable-stream-dev read my-stream
STREAM_URL - Base URL of the stream server (default: http://localhost:4437)durable-stream-dev create <stream_id>
# Write content as arguments
durable-stream-dev write <stream_id> "Hello, world!"
# Pipe content from stdin
echo "Hello from stdin" | durable-stream-dev write <stream_id>
cat file.txt | durable-stream-dev write <stream_id>
# Follows the stream and outputs new data to stdout
durable-stream-dev read <stream_id>
durable-stream-dev delete <stream_id>
# Terminal 1: Start the local development server
pnpm start:dev
# Terminal 2: Set up the stream
export STREAM_URL=http://localhost:4437
durable-stream-dev create test-stream
# Terminal 3: Start reading (will show data as it arrives)
export STREAM_URL=http://localhost:4437
durable-stream-dev read test-stream
# Back in Terminal 2: Write data and watch it appear in Terminal 3
durable-stream-dev write test-stream "First message"
durable-stream-dev write test-stream "Second message"
echo "Piped content!" | durable-stream-dev write test-stream
# Start the example server with live reloading
pnpm start:dev
# Watch mode for CLI development (rebuilds dist/)
pnpm dev
# Build
pnpm build
# Link globally for development (uses tsx, no rebuild needed)
pnpm link:dev
FAQs
CLI tool for working with Durable Streams
The npm package @durable-streams/cli receives a total of 32 weekly downloads. As such, @durable-streams/cli popularity was classified as not popular.
We found that @durable-streams/cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.