jazz-run 0.8.4 → 0.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +11 -0
- package/dist/startSync.js +18 -3
- package/dist/startSync.js.map +1 -1
- package/package.json +5 -5
- package/src/startSync.ts +20 -9
package/.turbo/turbo-build.log
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
|
2
|
-
> jazz-run@0.8.
|
2
|
+
> jazz-run@0.8.4 build /Users/anselm/jazz/jazz/packages/jazz-run
|
3
3
|
> npm run lint && rm -rf ./dist && tsc --sourceMap --outDir dist
|
4
4
|
|
5
5
|
|
6
|
-
> jazz-run@0.8.
|
6
|
+
> jazz-run@0.8.4 lint
|
7
7
|
> eslint . --ext ts,tsx
|
8
8
|
|
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# jazz-run
|
2
2
|
|
3
|
+
## 0.8.5
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- Updated dependencies [c3f4e6b]
|
8
|
+
- Updated dependencies [d9152ed]
|
9
|
+
- jazz-tools@0.8.5
|
10
|
+
- cojson@0.8.5
|
11
|
+
- cojson-storage-sqlite@0.8.5
|
12
|
+
- cojson-transport-ws@0.8.5
|
13
|
+
|
3
14
|
## 0.8.4
|
4
15
|
|
5
16
|
### Patch Changes
|
package/dist/startSync.js
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
/* istanbul ignore file -- @preserve */
|
2
2
|
import { Command, Options } from "@effect/cli";
|
3
|
-
import { ControlledAgent, LocalNode, WasmCrypto
|
3
|
+
import { ControlledAgent, LocalNode, WasmCrypto } from "cojson";
|
4
4
|
import { WebSocketServer } from "ws";
|
5
|
+
import { createServer } from "http";
|
5
6
|
import { createWebSocketPeer } from "cojson-transport-ws";
|
6
7
|
import { Effect } from "effect";
|
7
8
|
import { SQLiteStorage } from "cojson-storage-sqlite";
|
@@ -18,8 +19,14 @@ const db = Options.file("db")
|
|
18
19
|
export const startSync = Command.make("sync", { port, inMemory, db }, ({ port, inMemory, db }) => {
|
19
20
|
return Effect.gen(function* () {
|
20
21
|
const crypto = yield* Effect.promise(() => WasmCrypto.create());
|
21
|
-
const
|
22
|
-
|
22
|
+
const server = createServer((req, res) => {
|
23
|
+
if (req.url === "/health") {
|
24
|
+
res.writeHead(200);
|
25
|
+
res.end("ok");
|
26
|
+
}
|
27
|
+
});
|
28
|
+
const wss = new WebSocketServer({ noServer: true });
|
29
|
+
console.log("COJSON sync server listening on port " + port);
|
23
30
|
const agentSecret = crypto.newRandomAgentSecret();
|
24
31
|
const agentID = crypto.getAgentID(agentSecret);
|
25
32
|
const localNode = new LocalNode(new ControlledAgent(agentSecret, crypto), crypto.newRandomSessionID(agentID), crypto);
|
@@ -53,6 +60,14 @@ export const startSync = Command.make("sync", { port, inMemory, db }, ({ port, i
|
|
53
60
|
}));
|
54
61
|
ws.on("error", (e) => console.error(`Error on connection ${clientId}:`, e));
|
55
62
|
});
|
63
|
+
server.on("upgrade", function upgrade(req, socket, head) {
|
64
|
+
if (req.url === "/") {
|
65
|
+
wss.handleUpgrade(req, socket, head, function done(ws) {
|
66
|
+
wss.emit("connection", ws, req);
|
67
|
+
});
|
68
|
+
}
|
69
|
+
});
|
70
|
+
server.listen(parseInt(port));
|
56
71
|
// Keep the server up
|
57
72
|
yield* Effect.never;
|
58
73
|
});
|
package/dist/startSync.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"startSync.js","sourceRoot":"","sources":["../src/startSync.ts"],"names":[],"mappings":"AAAA,uCAAuC;AACvC,OAAO,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,
|
1
|
+
{"version":3,"file":"startSync.js","sourceRoot":"","sources":["../src/startSync.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"bin": "./dist/index.js",
|
4
4
|
"type": "module",
|
5
5
|
"license": "MIT",
|
6
|
-
"version": "0.8.
|
6
|
+
"version": "0.8.5",
|
7
7
|
"dependencies": {
|
8
8
|
"@effect/cli": "^0.41.2",
|
9
9
|
"@effect/platform-node": "^0.57.2",
|
@@ -11,11 +11,11 @@
|
|
11
11
|
"@effect/printer-ansi": "^0.34.5",
|
12
12
|
"@effect/schema": "^0.71.1",
|
13
13
|
"@effect/typeclass": "^0.25.5",
|
14
|
-
"cojson": "0.8.
|
15
|
-
"cojson-storage-sqlite": "0.8.
|
16
|
-
"cojson-transport-ws": "0.8.
|
14
|
+
"cojson": "0.8.5",
|
15
|
+
"cojson-storage-sqlite": "0.8.5",
|
16
|
+
"cojson-transport-ws": "0.8.5",
|
17
17
|
"effect": "^3.6.5",
|
18
|
-
"jazz-tools": "0.8.
|
18
|
+
"jazz-tools": "0.8.5",
|
19
19
|
"ws": "^8.14.2"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
package/src/startSync.ts
CHANGED
@@ -1,11 +1,8 @@
|
|
1
1
|
/* istanbul ignore file -- @preserve */
|
2
2
|
import { Command, Options } from "@effect/cli";
|
3
|
-
import {
|
4
|
-
ControlledAgent,
|
5
|
-
LocalNode,
|
6
|
-
WasmCrypto,
|
7
|
-
} from "cojson";
|
3
|
+
import { ControlledAgent, LocalNode, WasmCrypto } from "cojson";
|
8
4
|
import { WebSocketServer } from "ws";
|
5
|
+
import { createServer } from "http";
|
9
6
|
|
10
7
|
import { createWebSocketPeer } from "cojson-transport-ws";
|
11
8
|
import { Effect } from "effect";
|
@@ -41,11 +38,15 @@ export const startSync = Command.make(
|
|
41
38
|
return Effect.gen(function* () {
|
42
39
|
const crypto = yield* Effect.promise(() => WasmCrypto.create());
|
43
40
|
|
44
|
-
const
|
41
|
+
const server = createServer((req, res) => {
|
42
|
+
if (req.url === "/health") {
|
43
|
+
res.writeHead(200);
|
44
|
+
res.end("ok");
|
45
|
+
}
|
46
|
+
});
|
47
|
+
const wss = new WebSocketServer({ noServer: true });
|
45
48
|
|
46
|
-
console.log(
|
47
|
-
"COJSON sync server listening on port " + wss.options.port,
|
48
|
-
);
|
49
|
+
console.log("COJSON sync server listening on port " + port);
|
49
50
|
|
50
51
|
const agentSecret = crypto.newRandomAgentSecret();
|
51
52
|
const agentID = crypto.getAgentID(agentSecret);
|
@@ -106,6 +107,16 @@ export const startSync = Command.make(
|
|
106
107
|
);
|
107
108
|
});
|
108
109
|
|
110
|
+
server.on("upgrade", function upgrade(req, socket, head) {
|
111
|
+
if (req.url === "/") {
|
112
|
+
wss.handleUpgrade(req, socket, head, function done(ws) {
|
113
|
+
wss.emit("connection", ws, req);
|
114
|
+
});
|
115
|
+
}
|
116
|
+
});
|
117
|
+
|
118
|
+
server.listen(parseInt(port));
|
119
|
+
|
109
120
|
// Keep the server up
|
110
121
|
yield* Effect.never;
|
111
122
|
});
|