-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solid Start Comparison #96
Comments
Then we'll pick which features of solid-start are worth implementing in vike-solid |
I did a preliminary comparison table based on the one for NextJS:
(*) Vike doesn't ship those extras by design. (**) Industry-standard ways of caching is to use the HTTP Cache-Control header to cache in the client's browser and potentially also on a shared/public CDN cache in front of your server side. Additionally, if you ever need even more caching than that, it's possible to have an in-memory cache on your server-side using e.g. Redis or Memcached. (***) SPA-only mode means you make a static export of your app, into HTML, CSS and JS files, and serve them from a CDN, which means you don't need any server compute on requests (as opposed to SSR). Features I didn't put in the comparison table but that are interesting are:
|
@ailectra Thanks!
It's work-in-progress. (There is already an implementation for vike-react which we can then port to vike-solid.)
Does it enable a use case that vike-solid doesn't support?
I don't see a use case for this?
It's work-in-progress: vikejs/vike#1617. (I'll finish & merge it after I'm done with the new head management.) Beyond the work-in-progress on Vike's side, is there a use case Solid Start supports that Vike doesn't? One neat thing about Solid Start is their research around server components / island architecture 👀 |
A comparison of features could be neat.
To give confidence to users that vike-solid supports Solid Start features.
Also for us, so what we know where vike-solid is lacking compared to Solid Start.
The text was updated successfully, but these errors were encountered: