Greg Sexton
Greg Sexton
``` skdb> select 'foo' || 'bar'; ┌──────────┐ │ col │ ├──────────┤ │ "foobar" │ └──────────┘ skdb> create table test (x text); skdb> insert into test values ('foo'); skdb> insert into...
``` root@ws://localhost:3586/skiplabs> select * from task_events; ┌─────────┬───────────────────────────────┬──────────────────────────────┬────────────┬───────────────────────┬─────────────┬──────────────┐ │ (index) │ eid │ tid │ event │ t │ skdb_author │ skdb_access │ ├─────────┼───────────────────────────────┼──────────────────────────────┼────────────┼───────────────────────┼─────────────┼──────────────┤ │ 0 │ 'f901qBX3mFn7cKmNYxufzsCxKp4' │ 'f90149mur-5jz9xT8AJa9LB4N9' │...
Repro: ``` import { createSkdb } from "skdb"; const db = await createSkdb({ asWorker: true }); ``` If you change asWorker to false the node process will exit cleanly, otherwise...
This renders a debug trace given a static JSON file that is generated by SKStore.
This supplies the data as used by the UI (see PR #339). There is a networking PR to connect them but the rebase is extremely painful, so I've carved this...