Fatih Aygün
Fatih Aygün
I just managed to create a full react-query integration. This may solve this issue soon. https://stackblitz.com/github/rakkasjs/tanstack-query?file=src%2Fentry-hattip.tsx,src%2Fentry-client.tsx
Hi! I definitely hope to support Preact at some point but to my knowledge `preact/compat` doesn't support streaming SSR with Suspense that Rakkas relies on. So the integration will not...
I have my own experiment going on here: https://stackblitz.com/github/rakkasjs/rakkasjs/tree/release/preact/examples/preact It uses `preact/compat` and `preact-ssr-prepass` to make suspense possible in SSR (without streaming support). Client-side navigation doesn't work at all in...
> Is there a tradeoff between supporting, WinterCG & being the fastest possible? Probably not. HatTip's Bun adapter (WIP), Cloudflare Workers adapter, and Deno adapter are very very light (essentially...
@kemptone this is an unrelated issue that doesn't belong here. But it comes up quite often so I [opened an issue](https://github.com/cyco130/vavite/issues/16) with some background and possible ways to fix it....
> Do you have any thoughts on how we can test to see if our project is workers-compatible? > > Definitely happy to remove the uses of promisify and the...
> I want to believe there's probably some prior art for this Trying to bundle with ESBuild without any externals (or only a few) might be a way. It's very...
I just published a resolver package that solves this issue using [resolve.exports](https://github.com/lukeed/resolve.exports): https://www.npmjs.com/package/eslint-import-resolver-exports It's currently beta but seems to work for most of my projects. Feedback appreciated.
> do you have examples that we could look at? Currently what's in the readme is all I have. I think it's best to use this as a fallback _in...
I have a very similar idea for Rakkas (and HatTip) but my plan was to make Rakkas plugins plain Vite plugins with some extra keys for Rakkas specific features. This...