Alec Larson
Alec Larson
I would prefer that users be forced to scroll left-to-right, instead of awkwardly wrapping lines that exceed the viewport. Wrapping makes the code look less like Javascript, IMO. I know,...
Am I forced to subscribe the connection on `OPEN` to a `Grip-Channel` meant for only one connection before I can send a message via the `/publish` endpoint? What if I...
I'm binding a host directory to `/etc/pushpin` with a custom `pushpin.conf` and I'm wondering which settings are required for Pushpin to work as expected. With a setup like this.. ```ini...
The `sidebar` option of `new Docute()` is interesting. What if it was vue-powered markdown like pages are? Maybe you should be able to pass in a markdown template string (instead...
I have markdown nested in a custom Vue component, and I need to render it as such. Is there a Marked component built-in?
In concurrent mode, renders can be discarded, which means they'll never be committed to the DOM (or whatever native host). There are potentially other issues as well (see [here](https://github.com/dai-shi/will-this-react-global-state-work-in-concurrent-mode)). Currently,...
```ts const data = o({}) Object.defineProperty(data, 'a', { value: 1 }) auto(() => console.log('a =', data.a)) // Change is not observed. data.a = 2 ```
```ts const data = o({ a: 1 }) auto(() => console.log('changed:', { ...data }) // New property is not observed. data.b = 1 ```
In v0.13.6, support for `define` changes were added, but the `watch` function does not handle them properly.