Alec Larson
Alec Larson
Hmm, nevermind, still having trouble, but at least no crashing on startup. Is there a way to extend the example config?
I ended up copying the example config and editing that. Ideally, I could do the following: ```ini [proxy] sig_key=changeme ``` ..and it would work. Maybe some saner defaults are in...
Customizing the sidebar with my own elements
Is there an existing way to customize the sidebar?
**Q:** Should using `Object.keys` on an array observe its `length` or its sparse indices? Probably the latter, since that's what affects the result of `Object.keys`.
Preact example: https://github.com/alloc/preact-todomvc (status: **on hold**)
For benchmarking purposes: https://github.com/mweststrate/mobx-todomvc
The `withAuto` and `useAuto` functions no longer leak (since v0.3.0), but there are still issues in concurrent mode (if [this](https://github.com/dai-shi/will-this-react-global-state-work-in-concurrent-mode) is anything to go by). I'm going to wait until...
Another option is to add a `then` method to the `Auto` class: ```ts auto(() => { // Observed computation here }).then(result => { // Unobserved side effects here }) ```...
@ryanking1809 I think that introduces unnecessary maintenance burden, and avoiding an extra function isn't worth that cost. For example, if you start using another observable value, you need to also...