-
This happens on slideboard:
```
Uncaught Exception:
AssertionError: Funk is being re-triggered, but isn't on_save. It is: "to_forget", oh and funk: function get_from_master("post/w72p51v3p6x6vg6i52…
-
The current codebase has some `eval` (and dynamically evaluated CoffeeScript). I started playing with the code to see if I could remove the need for this. Is that misguided — is there no way around it…
-
I feel like there's a lot of this in statebus code:
```
conns = fetch('/connections')
conns.all ||= []
```
When I fetch remote state, fetch immediately returns with `{key: '/connections'}`, a…
-
E.g.
```
const bus = require('statebus').serve({file_store: {prefix: 'my_prefix'}})
```
```
$ diff server.js ~/statebus/server.js
9c9
< file_store: {save_delay: 250, filename: 'db', bac…
-
This could make the editor compatible with the file system. Just download what you've been editing, and you'll have a file to work with. Upload a file and it'll save it as state.
-
In 2013 I set out to build a project called [Interconnect](https://bevry.me/projects) however the tech wasn't available for an indie developer to do it at the scale necessary at the time: notably, a l…
-
Is there a client or usage example of statebus that does not depend on React?
-
```
// Automagically makes bus calls reactive in render
import ReactiveComponent from statebus
class Hello extends ReactiveComponent {
render() {
return ReactDOM.div({
style: {
…
-
pending_fetches isn't updated properly when you fetch an object with nested keyed objects.
**Problems this causes**
1. my reactive functions with @loading guards never complete
2. pending_fetches bec…
-
The `connections` state is nice to have, but it's a little confusing to use.
1) It looks different on the client and server. On the client, `fetch('/connections')` -> `{key: '/connections', all: [{…