-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Auto-generated endpoints from component code #758
Comments
FWIW, I was confused by the same, especially by how it could be like those Next.js equivalents while not allowing me to use server-only / build-only Node code like |
Added a PR to update the docs: #813 |
Will SvelteKit ever consider adding a |
Maybe. We can't just declare endpoints inside components... <script context="module">
import db from '$lib/db';
export async function get(request) {
return {
body: await db.get(request.params.id)
};
}
</script> ...because that code (including -<script context="module">
+<script context="module server">
import db from '$lib/db';
export async function get(request) {
return {
body: await db.get(request.params.id)
};
}
</script> ...but now your editor isn't totally sure what's going on because it only gets the result of preprocessing in SSR mode or CSR mode, not both. The scoping is a little confusing as well. Meanwhile, not having an explicit API makes debugging harder — you can't just slap a |
Sounds related to the rfc past-you made sveltejs/rfcs#31 |
It's easy to create endpoints, but it's not easy to use them, at least if you're trying to do static site stuff. (I'm way more interested in Next.js's It's all very roundabout and difficult to understand compared to Next.js, which was very simple even for a newbie web dev like me. (And for me personally, the ability to easily write endpoints in JavaScript isn't really a plus anyway since anything that I don't want to happen at build time I'd rather write in C#.) |
Yep, that's fair. One point — this...
...would still be true, since the hydrating code needs the data and can't infer it from the markup. But since duplicated content compresses nicely, it shouldn't have too big an impact on page weight. |
Right; I think to fully solve that problem, I'd need to be able to mark some component as "I promise this will never change, so just render it once and then don't treat it as a component at all after that point," which sounds simple in theory but is almost certainly complex to implement. :) That's a tangent—but definitely that's the thing that would be most useful to someone like me who's more focused on content-heavy static sites. |
Isn't this what |
Not exactly — firstly there's a bug (#823), but secondly that will also prevent any interactivity at all on the page, which might coincide with your requirements but often won't. Partial hydration needs solving at a lower level (i.e. Svelte) if we want it in SvelteKit |
@Rich-Harris, are there any technical reasons to…
As for #2, it seems unnecessary to have a I do realize there may be valid reasons for the current system that I'm just not seeing. Here's an idea: since the output from <script type='module'>
export const load = async () => {
const response = await fetch('/data')
const json = await response.json()
return {
props: { json }
}
}
</script> With this in the browser-side code: <script type='module'>
export const load = async () => {
return {
props: { json: JSON.parse(serializedJSON) }
}
}
</script> Effectively eliminating all sensitive implementation details and letting everything else still work as expected. |
@Nick-Mazuk the output from
Beyond that there are good reasons to run |
load
Not exactly related, but running |
closing in favour of #3532 |
good point via Twitter:
They currently say this, which isn't totally accurate:
The text was updated successfully, but these errors were encountered: