Skip to content

Commit 0c93b2c

Browse files
committed
more to read
1 parent 52872b9 commit 0c93b2c

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@ It is a really simple project. Essentially, it is an HTTP server (Worker) + simp
44

55
The main limitation is that it does not stream neither the request nor the response. This means that the whole request and response body data has to fit in memory (and likely be under ~100MB to fit into CF workers memory limitations).
66

7-
```bash
8-
npm run cf-typegen
9-
npm start
10-
npm run deploy
11-
```
7+
The monorepo is:
128

13-
Play with the protocol using [wscat](https://github.com/websockets/wscat).
9+
- the CF [worker](./worker) that does most of the work
10+
- the [client](./client) that replays the requests
11+
- the demo [server](./server) so you don't bother the AI to create one

client/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Client
2+
3+
The client that replays the requests and returns the responses to the target server.

server/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Server
2+
3+
A demo HTTP server that return unique hello-world responses.

0 commit comments

Comments
 (0)