When To Use Page Versus Standalone Endpoints In SvelteKit

  Рет қаралды 8,435

Joy of Code

Joy of Code

Күн бұрын

Пікірлер
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
🔴 Patreon: www.patreon.com/joyofcode 💬 Discord: joyofcode.xyz/invite
@mikle1404
@mikle1404 Жыл бұрын
Brilliant as always! Just one of the best Svelte / Sveltekit content creators out there.
@ScriptRaccoon
@ScriptRaccoon Жыл бұрын
I always thought it is pretty easy. Server loads give you the data for intially rendering the page. Endpoints give you additional data, which are retrieved when the user requests for it. Form actions are somewhat in between, but since classically a form reloads the page or even goes to a different page, it makes sense to colocate the form actions with the load functions. But in the video you have explained lots of other things as well. I think a good summary is: load function = data which is needed to build the page, endpoint= data the user requests.
@ScriptRaccoon
@ScriptRaccoon Жыл бұрын
PS: the title of the video suggests that there are "page endpoints" and "standalone endpoints". I would say this is a bit unfortunate, and actually could trigger more confusion. The server.ts file is not an *endpoint*. It is just a file with the load function (and form action handler).
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
It is a page endpoint which you can confirm when you look at how client-side navigation works as it returns the JSON for the page (in the past this was named a shadow endpoint).
@June-c2q
@June-c2q Жыл бұрын
It was more like a list of examples and use cases rather than a guide for creatig a mental model. But I always appreciate your video, thanks for the content
@i2zo_
@i2zo_ Жыл бұрын
Crazy, I asked myself this question yesterday, timing is great ! Thanks for the vid
Жыл бұрын
Amazing content like always, the best content in youtube and explain on an easy way
@manuelalejandrosaezpalomin3904
@manuelalejandrosaezpalomin3904 Жыл бұрын
Man, your content is gold, you have taught me a lot.
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
I'm glad to hear that! 😄
@adimardev1550
@adimardev1550 Жыл бұрын
sveltekit is super awesome just as your channel is awesome!🔥🔥
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
Thank you! 😄
@magick93
@magick93 Жыл бұрын
Fantastic! Thank you! I'd be keen to see more about dynamic components
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
That was it to be honest. You can send components from the server if you need to and render it inside your component. It's not something you're going to use often but useful to know about.
@what1heh3ck
@what1heh3ck Жыл бұрын
I dont get what you mean at 18:00, can you please explain it further why we dont do that?
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
If you have secret environment variables don't store them as variables inside a file but use SvelteKit to manage it and only use them on the server.
@lian1238
@lian1238 Жыл бұрын
At 5:21 in my opinion, when the user clicks a link, it’s cool that there is no layout shift but waiting one second before any visible UI change happens is not a good user experience, especially if the user’s internet is slow.
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
The experience would be the same even on a fast connection but you wouldn't notice because of preloading and using aspect ratio on the image helps prevent layout shift.
@lian1238
@lian1238 Жыл бұрын
@@JoyofCodeDev I am building an webapp which would also be an PWA. For mobile users, during testing, I felt about a 500ms delay when clicking on a link, which is a noticeable delay. (I want the app to be as responsive as a native app) Preload on hover isn’t viable on mobile devices. (I haven’t tried on tap, just realized it’s an option) I settled on the strategy of showing a loading icon with onMount and populating data that way.
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
You could preload the visible links you want on the page.
@johntierney3353
@johntierney3353 Жыл бұрын
Say I want to play a video in my svelteKit app. But first I have to transcode the video file using the program ffmpeg and send the ouput to my app.. Would ffmpeg be executed as a standalone endpoint or a server-only module?
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
That depends are you doing work using FFmpeg in that module or you're doing work when you hit the endpoint like a webhook.
@yt-sh
@yt-sh Жыл бұрын
thank you for making this app
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
You're welcome! 😄
@strongop7654
@strongop7654 Жыл бұрын
What about a video soon explaining how to fetch data from stores, and how to deal with endpoints and custom stores? It would be great!
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
You shouldn't use stores for that because a store is an object in memory on the client and doesn't exist on the server.
@strongop7654
@strongop7654 Жыл бұрын
​@@JoyofCodeDev I know that stores should not be use in the server side. My point is if there is a good way to receive the data from the server and store it in the client in a store. The issue is that if I don''t want to make a request (and not showing the 'Loading...' ) every time I visit the page, I need a way to keep the state. I guess that then I should use only client side, and create 'muscled' stores doing all the fetching and keeping the state. Am I right?
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
@@strongop7654 Sure, you could update the store when the data for the page updates.
@rafi_45
@rafi_45 Жыл бұрын
Sick. You are hero.
@rzzo
@rzzo Жыл бұрын
Solid video! What would you suggest api wise on how to send an email? Example would be a forgot password email, or confirm account email?
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
Doing everything yourself? I don't know but you could make an API for it like anything else or use a paid service.
@rzzo
@rzzo Жыл бұрын
@@JoyofCodeDev well like nodemailer and mailgun or something.
@d47im5e
@d47im5e Жыл бұрын
Hello, about the the pagination and filtering endpoints in the POSTS API section, I am doing basically the same thing in java and problem for me is, every request is making the backend call the same data fetching operations(what i mean with an example from the video - when you call the posts api endpoint from browser 20 times, is is going to call jsonplaceholder site every time, which is unneccessary IMO). For performance reasons i have to think about caching etc.. on the backend so that endpoint calls are more elegant. So my question is (at long last 😊) are there any solutions for nodejs-side for this? Any quick links for me to check out? I was gonna ask chatgpt for 'node caching, any solutions?' but i wanted some human connection 😊.
@JoyofCodeDev
@JoyofCodeDev Жыл бұрын
You can set Cache-Control HTTP headers on your endpoint and I also hear people often mention Redis which you can look into. Also I completely understand and if you want people to talk to consider joining the Discord: joyofcode.xyz/invite.
@WyzrdCat
@WyzrdCat Жыл бұрын
I love your content.
@onepointproduction9092
@onepointproduction9092 Жыл бұрын
Superbbbbb
@EvangelhosDosDias
@EvangelhosDosDias Жыл бұрын
First Brazil
Understand How Data Flows Through SvelteKit
25:59
Joy of Code
Рет қаралды 20 М.
Master The Svelte Context API
18:07
Joy of Code
Рет қаралды 8 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 11 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Use Svelte 5 Snippets To Reuse Markup Without Creating Components
17:41
Loading Data in SvelteKit (+page.js & +page.server.js)
14:22
Huntabyte
Рет қаралды 83 М.
Svelte 5 Snippets: Revolutionizing UI Composition | Snippets Vs Slots
12:09
Fullstack Ninja Academy
Рет қаралды 2,1 М.
Simple SvelteKit Page Transitions Using The View Transitions API
21:42
Learn SvelteKit Hooks Through 6 Examples
23:55
Joy of Code
Рет қаралды 20 М.
Avoid Async Effects In Svelte
10:41
Joy of Code
Рет қаралды 5 М.
Avoid Leaking User Data In Your SvelteKit App
24:31
Joy of Code
Рет қаралды 5 М.
Google’s Quantum Chip: Did We Just Tap Into Parallel Universes?
9:34
Why Your Load Functions are Slow
8:24
Huntabyte
Рет қаралды 21 М.