repos / starfx

supercharged async flow control library.
git clone https://github.com/neurosnap/starfx.git

commit
2b5e614
parent
a3af82a
author
Eric Bower
date
2023-09-02 14:37:14 +0000 UTC
doc: readme update with references
1 files changed,  +18, -0
M README.md
+18, -0
 1@@ -16,8 +16,19 @@ Supercharged async flow control library.
 2 - data synchronization and caching for `react` (like `react-query`,
 3   `redux/toolkit`)
 4 
 5+## talk
 6+
 7+I recently gave a talk about deliminited continuations where I also discuss this
 8+library:
 9+
10+[![Delminited continuations are all you need](http://img.youtube.com/vi/uRbqLGj_6mI/0.jpg)](https://youtu.be/uRbqLGj_6mI?si=Mok0J8Wp0Z-ahFrN)
11+
12 ## example
13 
14+This complete solution to the problem Jake Archibald discusses in his blog
15+article
16+[The gotcha of unhandled promise rejections](https://jakearchibald.com/2023/unhandled-rejections/):
17+
18 ```ts
19 import { json, main, parallel, request } from "starfx";
20 
21@@ -45,3 +56,10 @@ console.log(results);
22 ## usage
23 
24 Please see [examples repo](https://github.com/neurosnap/starfx-examples).
25+
26+## resources
27+
28+This library is not possible without these foundational libraries:
29+
30+- [continuation](https://github.com/thefrontside/continuation)
31+- [effection v3](https://github.com/thefrontside/effection/tree/v3)