Skip to content

Commit 71c751c

Browse files
committed
Remove npm install links from READMEs
Packages haven't been published yet, so npm install commands were misleading. Kept local development pnpm install instructions.
1 parent c5ec6ac commit 71c751c

File tree

2 files changed

+0
-20
lines changed

2 files changed

+0
-20
lines changed

README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,6 @@ The Test UI and CLI share the same `__registry__` system stream, so streams crea
136136

137137
For applications that only need to read from streams:
138138

139-
```bash
140-
npm install @durable-streams/client
141-
```
142-
143139
```typescript
144140
import { DurableStream } from "@durable-streams/client"
145141

@@ -156,10 +152,6 @@ console.log(new TextDecoder().decode(result.data))
156152

157153
For applications that need to create and write to streams:
158154

159-
```bash
160-
npm install @durable-streams/writer
161-
```
162-
163155
```typescript
164156
import { DurableStream } from "@durable-streams/writer"
165157

@@ -457,10 +449,6 @@ runConformanceTests({
457449

458450
### Node.js Reference Server
459451

460-
```bash
461-
npm install @durable-streams/server
462-
```
463-
464452
```typescript
465453
import { createDurableStreamServer } from "@durable-streams/server"
466454

@@ -478,8 +466,6 @@ See [@durable-streams/server](./packages/server) for more details.
478466
## CLI Tool
479467

480468
```bash
481-
npm install -g @durable-streams/cli
482-
483469
# Set the server URL (defaults to http://localhost:8787)
484470
export STREAM_URL=https://your-server.com
485471
```

packages/client/README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
TypeScript client for the Electric Durable Streams protocol.
44

5-
## Installation
6-
7-
```bash
8-
npm install durable-stream
9-
```
10-
115
## Overview
126

137
The Durable Streams client exposes a single class: `DurableStream`.

0 commit comments

Comments
 (0)