Alec Larson
Alec Larson
Being able to have one worker per route would be fantastic, and that means one SSR bundle per route. Every possible `beforeRender` and `render` call (based on route matching) would...
When HTML processors are used, the SSR-produced HTML can differ from the hydrated DOM. We should provide a way to process the inlined HTML from inside the state loader that's...
Which options would you like added to Saus CLI? Describe them below 👇
Currently, each `build` call manages its own worker pool, but that means multiple builds will incur the same startup penalty when they *could* be reusing workers from previous builds. The...
Pass the `--watch` or `-w` flag to enable watch mode. When your server module or client modules are changed, the bundle will be regenerated and your server will be restarted.
Once the page is hydrated, apply the buffered events in order. **Prior art:** - https://github.com/ryansolid/dom-expressions/blob/6021864cc1d521dcf3ae91b2d20f585557e9875c/packages/dom-expressions/src/server.js#L261-L285 - https://github.com/ryansolid/dom-expressions/blob/6021864cc1d521dcf3ae91b2d20f585557e9875c/packages/dom-expressions/src/client.js#L240-L254
Let's say I have multiple workers, and I want to use a PNPM workspace to share dependencies between them. A setup like this is possible, but I can only develop...
If a branch name contains a dot, the output is incorrect. ## Repro ```js import toml from 'markty-toml' toml(` [branch "v1.0"] remote = origin merge = refs/heads/v1.0 `) ``` Expected:...
Using `node v8.9.1`, the `inspect` command opens a Chrome window whose url is `data:;` and closes after a short delay. 
Part of the changes by @jwerle in [this commit](https://github.com/socketsupply/socket/commit/91912c6e235a3ccb31e113cd2de9e36f706458ce) is incorrect. The `loadFileRequest:` method doesn't work with `http://10.0.0.80:5173/` The app will crash with: ``` http://10.0.0.80:5173/ is not a file URL...