Excellent video! Shout out to programmers in Brazil
@nevillebrem22 сағат бұрын
thanks!
@Huntabyte2 күн бұрын
Thanks for the shoutout ❤
@charlesbcraig3 күн бұрын
I played with Neon on an internal SvelteKit app. My only issue, which applies to virtually all serverless, was latency. Now with apps/sites that can utilize caching, it wouldn’t be an issue.
@nevillebrem3 күн бұрын
yeah, latency was a thing... but you can hide it pretty well with like spinners and just making the app fast in other aspects i guess
@charlesbcraig3 күн бұрын
I’m currently stuck in useEffect hell on a React project I inherited 😭
@nevillebrem3 күн бұрын
oof... i migrated an app to sveltekit. it's not that difficult. try it
@charlesbcraig3 күн бұрын
@ it’s a volunteer project for another organization, so I can’t change anything… it’s bad enough they’re using FireBase and they eventually want to move to SQL…can’t wait for that conversion…
@nevillebrem3 күн бұрын
@@charlesbcraig well that's a bummer. wish you the best and merry christmas!
@charlesbcraig3 күн бұрын
@nevillebrem Merry Christmas!🎄
@iulikdev3 күн бұрын
I only code in sveltekit, work (i'm alone in team with coding) and personal projects. I tried to learn react 3 times, only sveltekit was cleaner. I don't like skeleton ui, i tried daisy ui.
@charlesbcraig3 күн бұрын
DaisyUI is the way
@charlesbcraig3 күн бұрын
DaisyUI is the way
@nevillebrem3 күн бұрын
i came from react but it was meh. sveltekit ftw
@nevillebrem3 күн бұрын
yeah i use it too. but shad is also pretty neat
@angelov_wise3 күн бұрын
❤️
@SithLordBishop3 күн бұрын
Been using svelte for about 5 years. It's sooooo nice. I can't stand react anymore.
@scottadams73737 күн бұрын
what is neon
@spidey_bs1097 күн бұрын
Your mom
@soberstudy16018 сағат бұрын
In short: a hosting provider for postgres databases
@angelov_wise9 күн бұрын
incredible content, more!
@pookiepatsАй бұрын
Preact’s “HTM” is far superior to JSX MDX is the only tolerable way to write svelte now. Ugly arse syntax and they will keep changing it. Can’t build anything on it without inviting endless maintenance, Svelte is one man’s ego project y’all are crazy. There’s a reason Svelte still hasn’t popped in Commercial.
@victor1882Ай бұрын
This is not rolling your auth, it's just an OAuth2 client... when did people start to get confused about this?
@nevillebremАй бұрын
you're right. it's more like rolling my own session mgmt and slapping oauth on top of it
@o_glethorpeАй бұрын
@@nevillebremso gonna keep the clickbait or...
@TomislavMileticАй бұрын
This whole series is awesome, thank you very much 💚
@nevillebremАй бұрын
really glad i could help bro!
@TomislavMileticАй бұрын
This is awesome, thank you
@nevillebremАй бұрын
thanks!!
@saeedfarhadi1773Ай бұрын
Any thoughts on Stack Auth?
@nevillebremАй бұрын
don't know it, will check it out
@saeedfarhadi1773Ай бұрын
@nevillebrem please do, and let us know how it compares. I think it's close to Clerk in functionality but self-hosted, I haven't used it yet but I'm planning to.
@anksvansАй бұрын
what's that keyboard and do you recommend? thanks for the content!
@nevillebremАй бұрын
keychron k6. it looks and sounds good, but for my taste it's a bit too loud. but i love the layout and it works well with macos
@TomislavMileticАй бұрын
Thank you, how would you add authentication and authorization here?
@nevillebremАй бұрын
with lucia or an other auth library. will do a tutorial soon
@TomislavMileticАй бұрын
@@nevillebrem Thank you, if you could please compare cloudflare d1 with turso
@nevillebremАй бұрын
@TomislavMiletic maybe if i find time. but i see what i can do
@TomislavMileticАй бұрын
Thanks, so Lucia is deprecated or not? Do you use it for client work?
@nevillebremАй бұрын
well the library is deprecated. you now have to set up the functions yourself like stated on the website. but you can of course use it for client work
@TomislavMileticАй бұрын
@@nevillebrem thank you
@spidey_bs109Ай бұрын
your content is so inspiring
@LucasSchindlerSalmerónАй бұрын
Bro, thanks for bringing out sooo many videos lately. Love them
@deucebigs9860Ай бұрын
Would love a deeper dive of exactly what you did for auth where you talk about all the different parts and what the functions are doing. I'm new to auth and still trying to wrap my head around all the events happening during authentication.
@nevillebremАй бұрын
will do that! thanks for the feedback
@TheVertical92Ай бұрын
Read the lucia docs and the handbook they're providing. Its really not that difficult, you just have to get into it.
@hamm8934Ай бұрын
Svelte 5 aka Vue3 from 2019 with minor API and performance differences
@nevillebremАй бұрын
🧐
@flyntwickАй бұрын
Definitely feels like it. Logically, I understand the changes. Syntactically it seems like regression.
@babakfpАй бұрын
Svelte is reinventing JSX but worse.
@nevillebremАй бұрын
not at all bruh. they don't want to be jsx but sth new. sth better
@babakfpАй бұрын
@nevillebrem They don't want JSX, and as a result they built something worse.
@nevillebremАй бұрын
@@babakfp why worse?
@b1mindАй бұрын
JSX is cursed af.... HTML first all day all the way.
@babakfpАй бұрын
@nevillebrem @b1mind JSX is awesome. In JSX, components are just functions. That's it. But in Svelte 5 you have two different things. One is called a component and another called a Snippet. They are not the same. Their TypeScript type is different. The syntax is something completely new, and you need to learn. When you want to pass a snippet to a function inside the script tag, you need to declare the snippet outside the script tag (and inside the template part) and then reference it inside the function inside the script tag. In JSX, it's just as simple as using functions. There is no new and weird things to learn. It's just JavaScript. In Svelte, you can't have a prop that accepts both the `Component` and `Snippet` types. The way that Components and Snippets work are different. Because of this, when dealing with props, you most use the `<MyComponent />` syntax for the `Component` type and the `{@render MyComponent()}` syntax for type `Snippet` type to render them. Well, you can just use a condition to check if the prop is type of `Component` or `Snippet`, right? Wrong, you can't! It's not possible to differentiate between a `Component` and a `Snippet`. In JSX, you don't face with issues and limitations like this.
@OttoAkamaАй бұрын
JavaScript developers are so embarrassing. They just patch things. I pray this culture remains in JavaScript and not creep out into other dev communities. 😢
@karenthelowest1777Ай бұрын
Install Arch Linux and delete GayOs 😡🤬
@nevillebremАй бұрын
😂
@pookiepatsАй бұрын
GayOS? Lol who hurt you
@nevillebremАй бұрын
@pookiepats it's alright he's a friend 😂
@pookiepatsАй бұрын
@@nevillebrem nah fck that! ;)
@spidey_bs109Ай бұрын
bro two vids in 1 week, keep up the good work my asian G
@LucasSchindlerSalmerónАй бұрын
OMG, thanks very much for this video. It helps a lot. Will use it on tuesday. Thank you very much!!!
@georgezimmer5622Ай бұрын
I don't think we thank JS Content creators enough to keep us updated on a weekly basis on what services to use. I they weren't there I'd still be using Express and Node
@nevillebremАй бұрын
thanks, it is a pleasure :)
@sunitjoshi3573Ай бұрын
Great! Would love a detailed tutorial on Svelte 5 with Skelton showing CRUD operations via Drizzle.
@nevillebremАй бұрын
will do that as soon as skeleton v3 is stable
@beeman-devАй бұрын
Thanks for this video! Your advice on the end is very valuable! Don't be afraid of the tech, just try it out! Keep trying!
@theBarracuda_Ай бұрын
better-auth has 77 dependencies (including peers) :(
@senseicodesАй бұрын
Lucia is still king of auth. He gave us the code, guidelines and safe way to roll your own auth and its really easy
@nevillebremАй бұрын
disappointing indeed. but don't worry. a follow up video will drop in two days
@tinywifiАй бұрын
you are quiet as fu 😭😭 had to turn up my volume a whole lot
@nevillebremАй бұрын
thanks for the feedback, will do that for my next vid
@scottadams7373Ай бұрын
NEV THE DEVVV
@sirtoothy844Ай бұрын
Lucia is not gone
@nevillebremАй бұрын
yeah i know
@x1yx228Ай бұрын
audio is Sh**
@nevillebremАй бұрын
bruh
@nevillebremАй бұрын
can you explain in more detail please :)
@silas427Ай бұрын
@@nevillebrem audio seems fine to me, not sure what hes refering to
@nigelnyakudya2262Ай бұрын
Hi bro, consider bumping up your font not visible enough on mobile.
@premidel1Ай бұрын
Just roll out your own auth 😭😭😭 it really is not complicated and doesnt take long. And if you do it once you can just reuse it in any project. And you can customize it to suit your needs. Ffs even Lucia tells you to do it!
@nevillebremАй бұрын
i am now realising that you are actually right
@hello19286Ай бұрын
I agree. Too many people bought into the auth provider marketing that rolling your own auth is somehow unsafe or too complicated.
@senseicodesАй бұрын
Its really not that difficult. Lucia provided all the functions and packages, and now it's the best fit for my old project with users and admins table, now i can tell the function which table to look up, its far better!
@nevillebremАй бұрын
@senseicodes it is OP. video will drop on wednesday
@Yeetus-sw3stАй бұрын
It is just like using these fancy ORM's when you can just use SQL, the risks are very easily mitigated
@spidey_bs109Ай бұрын
Yeee bro
@beenqt6506Ай бұрын
I also used Lucia for my last projects (I used auth.js before, which was a pain in the ass). Haven't tried better-auth yet, but I've seen it a few times. I think the organisation of the two factor plugins is very cool. Great video as always :^)
@LucasSchindlerSalmerónАй бұрын
Yess, thank you for a new video. We love you!!! Nice Sweatshirt
@سنابل-الفردوسАй бұрын
the haunt for the best charting library (Echarts) for me just like Daisy Ui is my fav
@nevillebremАй бұрын
will check that out! is it compatible with sveltekit
@neondeex15982 ай бұрын
to use resend in svelte do i need react-doom?
@nevillebrem2 ай бұрын
nope absolutely not. you don't need anything react
@naldiojoaquim89202 ай бұрын
Why don’t exists a library for clerk equal nextjs?
@nevillebrem2 ай бұрын
you mean for svelte?
@CeriseSky2 ай бұрын
Great video! Personally, I feel like Drizzle ORM might be better at the moment, because Astro DB only supports libSQL and it's only used with Astro, while Drizzle supports Postgres, MySQL, and SQLite, and you can use it with different frameworks like Next.js and Nuxt. Also, it's easier to host. Astro DB's hosted version is still in closed beta.
@nevillebrem2 ай бұрын
yeah. well they actually sunsetted astro studio, because it wasn't used so much. so you kinda need to BYODatabase. while you are correct about drizzle i still think that astro db is a super well thought-out plug and play solution for astro
@CeriseSky2 ай бұрын
The SaaS boilerplate RyzeKit Astro uses Astro Actions, and it definitely simplifies alot of form-handling in the backend 👍
@nevillebrem2 ай бұрын
yup i really think it was a super good addition
@michaelandreuzza3 ай бұрын
Tailwind css it's not a library....
@nevillebrem3 ай бұрын
Yup i know. I also didn't talk about tw being a library. It's just the foundation of the libraries that i am using
@enricosaez33453 ай бұрын
What's your VS Code theme?
@nevillebrem3 ай бұрын
GitHub theme
@Aestareth_3 ай бұрын
I prefer using framework-specific libraries, because afaik they're higher quality. Like Vuetify for Vue or MantineUI for React
@nevillebrem3 ай бұрын
yeah i get whatcha mean. I loved framer motion for example. but what options are there for svelte? flowbite? Because I feel like all these mUI ports and stuff are all so fckin scuffed and don't look good and don't play well w/ tailwind
@robertholtz3 ай бұрын
Zenith is pronounced “zee-nith.”
@nevillebrem3 ай бұрын
Yoo fr? Didn't know that
@robertholtz3 ай бұрын
@@nevillebrem Yes, for real. ( kzbin.info/www/bejne/bHzMg355hLl2lZo ) Full disclosure, since having this exchange with you I looked into any valid variants of the word and apparently the British version of the word is pronounced the way you said it. So technically both are correct but the American pronunciation is far more prevalent. This is like aluminum, centrifugal, jaguar, letter Z, and a number of other ways British has distinct pronunciations for certain English words. Zenith was also a very popular American brand for many decades that greatly popularized the American pronunciation.For what its worth, I just subscribed to your channel. Cheers.