David Sheldrick
David Sheldrick
haha interesting. I had no idea yarn could install any old git repo like that. To be honest I'm probably not going to support this unless it becomes a common...
I'm gonna leave this open as it's a valid feature that I probably won't get around to. If any contributors come up with a way to do this with good...
This is a big fuck up on my part: The current version of DJS uses a GC-style mark-and-sweep algorithm to free memory which only gets called when atoms change. So...
Sorry for the delay in getting to this. `transact` and `transaction` allow doing nested transactions. I'm not sure that's a use case that anyone cares about though, so feel free...
```js const x = atom('root') transact(() => { x.set('in top transaction') try { transact(() => { x.set('in bottom transaction') throw new Error('whoops') }) } catch (_) {} x.get() === 'in...
Ticker was originally implemented for Angular 1 integration. I don't think anyone is using it, and would be happy for it to be removed or made 'private'.
Wow, I really appreciate the offer :) There are a bunch of breaking changes I want to make before 1.0. I also want to rename the project to something more...
I've talked to a few smart people who think it is not catchy enough and sounds too mathsy. In hindsight I agree. @oskbor thanks for the suggestions. I really like...
Sorry to hear that. I think the only thing that needs doing is updating the docs. At this point I'd be happy with normal markdown docs. It would be great...
That's cool, huge thanks for all your work up to now! :1st_place_medal: