loggit
loggit copied to clipboard
Embracing the log for UI engineering
Trivial change from: ``` javascript "scripts": { "start": "scripts/browser", "build": "scripts/build", "clean": "scripts/clean", "lint": "scripts/lint", }, ``` to: ``` javascript "scripts": { "start": "scripts/browser", "build": "scripts/build", "clean": "scripts/clean", "lint": "scripts/lint"...
I did some initial profiling to get a rough sense of the compute performance. These are raw notes, would be good to analyze further and add to README or write...
Compaction is only triggered manually now, but you can see the effects here, after a 30 second run with `memosnap+raf`, then forcing a compaction. I'm not quite sure how to...