Benjamin Gruenbaum
Benjamin Gruenbaum
CAF looks really interesting, it's a shame we don't have proper cancel token support from the platform. I see you `.return` on the generator on cancellation which is what we...
Hi, Node guy here - Node.js does use c-ares. Here's discussion about replacing it https://github.com/nodejs/node/issues/1013 DNS thread pool is a compromise. Node documents `.lookup`: > Though the call to dns.lookup()...
@1st1 I'm in the opinion you're doing an excellent job using libuv and that you shouldn't worry about this until it becomes a real problem. I'd argue that the vast...
Hey to understand does this issue manifest without any `gc()` calls?
Hey, is there any progress on reviewing this @jdrouet ? How can we help? cc @stereokai
What's `path` returned as, and what's `getPathname` doing?
I just learned about this project so taking a stab: In both React and crank components hold state and are impure - in crank that state is managed by the...
That is, even in regular react SSR is slightly different because components are "less stateful", managing that state in regular JavaScript and just discarding the generators makes things easier.
Oh I see what you're talking about now - that depends on how the stores and state is implemented. I'm not sure if the framework already supports hydration - but...
Hooks are deeply ingrained into React and using them would basically be a reimplementation. This library can implement useState/useEffect in a way that lets you use hooks inside generators -...