How I structure my next.js applications

  Рет қаралды 23,837

Web Dev Cody

Web Dev Cody

Ай бұрын

My Products
🏗️ WDC StarterKit: wdcstarterkit.com
📖 ProjectPlannerAI: projectplannerai.com
🤖 IconGeneratorAI: icongeneratorai.com
Useful Links
💬 Discord: / discord
🔔 Newsletter: newsletter.webdevcody.com/
📁 GitHub: github.com/webdevcody
📺 Twitch: / webdevcody
🤖 Website: webdevcody.com
🐦 Twitter: / webdevcody

Пікірлер: 137
@georgemwaniki
@georgemwaniki Ай бұрын
We need more videos like this, coding tutorials are everywhere but no one is teaching architecture specific to a framework, i usually struggle to decide what goes where, great video
@maazmunir9213
@maazmunir9213 Ай бұрын
mythical beast: clean shaved cody
@SeibertSwirl
@SeibertSwirl Ай бұрын
Lmaoooooooo I’m going to call him this from now on
@dcmbassi
@dcmbassi Ай бұрын
Colocation makes the most sense. I don't know why I didn't think to apply this to server actions. Great video.
@boy291-z8c
@boy291-z8c Ай бұрын
this is useful stuff. Thanks for the video, cody!
@tyeinstem
@tyeinstem 24 күн бұрын
I knew something was wrong with how I was coding but didn't know what it was, this video is what I needed - ty!
@DatoDaraselia
@DatoDaraselia Ай бұрын
Thanks Cody! This is so useful!
@ByteBound
@ByteBound Ай бұрын
Valuable content 🙏 Thanks for sharing
@NizzyABI
@NizzyABI Ай бұрын
Thank you Cody! I’ve been developing in Nextjs for a while but seeing the perspective from a senior developer is unbelievably valuable
@Yusuf-ok5rk
@Yusuf-ok5rk Ай бұрын
i love cody but does he really count as senior? i don't know.
@WebDevCody
@WebDevCody Ай бұрын
I'm junior all day every day baby
@NizzyABI
@NizzyABI Ай бұрын
@@Yusuf-ok5rk true, not really sure. kinda assumed haha
@funkdefied1
@funkdefied1 Ай бұрын
I’m loving Supabase right now. The business layer fits in really well with Postgres functions and edge functions.
@jonasj2627
@jonasj2627 Ай бұрын
Hey, I am also using supabase right now and I also like it. I just dont know how to how to use types properly. Currently I just take the return type of my data access functions. Also I am not sure how to deal with joins. Should I create functions and types? For example: getApplicationsWithProfile and the Type ApplicationWithProfile.
@SeibertSwirl
@SeibertSwirl Ай бұрын
Good to see you back babe! Love ya! Great job
@juliocesarbenavente9590
@juliocesarbenavente9590 Ай бұрын
Are you too related somehow? 😅
@Nurof3n_
@Nurof3n_ Ай бұрын
@@juliocesarbenavente9590 it's his wife
@lord_kh4n
@lord_kh4n Ай бұрын
@@juliocesarbenavente9590 she's his gf I guess
@hamzaa9429
@hamzaa9429 Ай бұрын
@@juliocesarbenavente9590his wife, dope ass relationship. Shout out to Cody for being the 🐐
@yassinesafraoui
@yassinesafraoui Ай бұрын
This is very very very helpful, thanks!
@kamranaslam4230
@kamranaslam4230 Ай бұрын
Your work is exceptional. I am inspired by your videos and the fresh insights I gain from them. It makes me wonder if there's something new I may have overlooked. It would be great if you start adding unit tests as well. Keep up the great work.
@WebDevCody
@WebDevCody Ай бұрын
Thanks man
@kelvinxg6754
@kelvinxg6754 Ай бұрын
Welcome back brother
@JohnCanCode
@JohnCanCode Ай бұрын
Cool vid, would like to see more on the entities and maybe services, ie would payment service be similar to db repository?
@raphauy
@raphauy Ай бұрын
Hi, I use a very similar structure, except for some projects that I want to advance quickly, I unify the business layer with the persistence layer, but the separation of the view/controller layer is always there, it is super important. I communicate them with DAO objects.
@ShivGamer
@ShivGamer Ай бұрын
Amazing Video 😊
@emmanuelezeagwula7436
@emmanuelezeagwula7436 Ай бұрын
I never thought of using Server actions in this fashion, I always thought that it was for forms
@JS_Jordan
@JS_Jordan Ай бұрын
16:50 100% agree at my work there is a component folder with hundreds of files in it and I know for a fact at least 10% aren’t even being used
@maddada
@maddada Ай бұрын
Really liked this. I feel Nextjs is overly complicated for the apps that I'm working on currently, so I'm sticking with bun + vite, which is very fast and stable. So hope you do some content for that too :)
@caseyspaulding
@caseyspaulding 26 күн бұрын
Yea! I think your the only person talking about this topic in Nextjs community
@guy-dk9cy
@guy-dk9cy Ай бұрын
Amazing!! can you add a second part to the video how you decide what files should have try, catch ? what files shouldn't have it and just throw errors ? how toast work with actions ? and maybe a user auth with custom jwt and not using clerk ? also, how can we use webhooks with this architecture? and 3rd party integrations.
@patolorde
@patolorde Ай бұрын
I'm gonna try
@LofiChillOut
@LofiChillOut Ай бұрын
Great stuff. Can you link to the safe server action package
@flnnx
@flnnx Ай бұрын
This is how we learned to build NodeJS apps a few years ago in the bootcamp I attended. You actually made me realize how I incorporated some of it into NextJS haha. I do the rate-limit part in the global middleware and the Auth + user Input checks within the server actions. I treat the server actions like a small middleware that checks if everything is correct before passing the data down to the business layer. My use-cases/business layer is basically also a persistence layer, but it's actually a good idea to separate them. It seems much more maintainable and scalable for larger projects, though it might be overkill for smaller ones.. I'll definitely give it a shot and refactor some of my projects.
@yassinesafraoui
@yassinesafraoui Ай бұрын
The way you write server actions is very similar to how actions/queries/mutations are written in convex, interesting 👍
@WebDevCody
@WebDevCody Ай бұрын
I think trpc inspired a lot of things, same with react query
@aviadch
@aviadch Ай бұрын
Great video! Question - with this kind of separation, how can you implement a transactional business logic? For example if you have 2 use cases A and B, that you will need to call them both as an atomic action, how will you do that in this architecture where you abstracted the implementation of calling to db?
@WebDevCody
@WebDevCody Ай бұрын
personally you shouldn't be invoking 2 use cases as separate things, you should combine them into one. If you need transactions, I'd say just make a single persistence method which does the transactions you need. Pass whatever data into your persistence method and let it figure out how to do the transactions. For example, transferFunds(userAId, userBId, amount), this could all be abstracted behind a single persistence method.
@jnsdep
@jnsdep Ай бұрын
Hey ! What is your visual studio theme ? It looks gorgeous :)
@WebDevCody
@WebDevCody Ай бұрын
Bearded theme stained blue
@LucasFariaDev
@LucasFariaDev Ай бұрын
amazing video Cody! I always struggle on how to organize code in Nextjs apps when using server actions so this is great. You mentioned in the end using server actions vs react-query/more traditional data fetching APIs. How's your perspective on those trade-offs so far? What if you add Convex in the mix as well?
@WebDevCody
@WebDevCody Ай бұрын
if you're using convex, you don't need server actions. I enjoy server actions if you're just doing a standard next.js application. If you think you'll have a use-case of external people needing your data, then you probably should just make a rest api to begin with and use a better framework for rest apis instead of next.js. (such as nest.js, hono, etc). The rest api experience in next.js feels like an after thought.
@imkir4n
@imkir4n Ай бұрын
@@WebDevCody If we are using a separate backend like Nest for handling authentication, how can we authenticate users on Next.js and manage things like token rotation and fetching authorized API data in (RSC)?
@WebDevCody
@WebDevCody Ай бұрын
​@@imkir4n you should be able to just hit a login endpoint on your nest.js endpoint which could set a cookie with a top level domain set. Assuming your api and next application are sharing the same top level domain, that cookie will be sent on any request to your domain (including both your api and next.js application). Then you'd need to use that cookie in your next.js application and invoke your api to get the user session in your RSC calls. If you want to prevent hitting your api on every single request, that's when you'd probably just want to use some type of encrypted cookie and both your api and next.js application knows how to decrypt to get the user id of the session. idk if that answers it.
@imkir4n
@imkir4n Ай бұрын
@@WebDevCody If it’s possible, please make a video covering these topics: lacking content for the next app router with a separate backend, which follows good practice.
@lord_kh4n
@lord_kh4n Ай бұрын
@@imkir4n The thing is, /login endpoint should not return tokens as a response json, but a cookie instead. The one who set and manage auth and refresh cookie token should be your backend team. On your frontend, you just need to set `credentials: include` on the fetch function (`withCredentials: true` on Axios), you don't need to think about token or where to store it at all. When Frontend hit an authenticated API, the backend should check the cookie token (and do some token rotation when the auth token is expired for example) before proceeding to the API actual business process
@user-tt3bc7yk8r
@user-tt3bc7yk8r Ай бұрын
What is the text editor on 0:22?
@parkerrex
@parkerrex Ай бұрын
🔥
@kryttee
@kryttee Ай бұрын
Would love to see github repo of this, it's hard for me to comprehend the structure just by looking at the video
@ahmedbg91
@ahmedbg91 Ай бұрын
Hey there, great video! Glad to see that we have a very similar approach. I've been trying to figure out myself when fetching data in server components. I've been checking if the user is authenticated before fetching, but here's what I'm thinking: if the page is protected and the user has to be authenticated for the page and the component to render, the fetch call will never be made by an unauthenticated user, right? So, it's automatically protected. But i still do it anyway.
@WebDevCody
@WebDevCody Ай бұрын
The loader approach I mentioned can be useful, maybe even make an authenticatedLoader helper which verifies the user is logged in so you don’t have to keep fetching the user and validating it every time
@williamx0
@williamx0 28 күн бұрын
In the past, you would have recommended to do dependency injection on the use-cases or business logic so that it's not dependent on any external libraries (in this case drizzle-orm). Would you say injecting dependencies is just more cumbersome now and you're okay to have your business logic tied to the database repository functions or would you still dependency inject? I'm asking because I'm having the same issue
@WebDevCody
@WebDevCody 28 күн бұрын
I don’t think dep injection is useful. I honestly think it was written in the context of having to compile modules and hook them together. If all your code is owned in the same code base, it adds little value (other than mocking maybe?), but adds indirection. I’d honestly avoid it.
@williamx0
@williamx0 28 күн бұрын
@@WebDevCody I was thinking about it a bit more and reading more about DDDD and my updated thoughts on this is... I guess it really makes more sense in the context of using classes. Cuz dependency inject individual drizzle-orm functions is very cumbersome and leads to being feeling overwhelmed, but I would assume if injecting a whole repository class that might make more sense? Open to your thoughts. I'm leaning towards trying a whole DDDD approach right now (but not strict adherence and adapting when it makes sense) but I think the drawback of that is just a lot of code to maintain. But at the same time, writing it like how almost all nextjs projects are right now, is also making me a bit overwhelmed since things aren't very organized and mentally it's starting to get overwhelming.
@williamx0
@williamx0 28 күн бұрын
@@WebDevCody So I'm thinking of using more classes in my nextjs app for domain entities and repositories etc. One thing I'm afraid of is that these classes potentially making nextjs take longer to load since I'm loading more code I'm not using, and I think that's probably a legit concern, but for now, using functions only when the codebase starts to grow and there are more entities and a bit more complexity ends up with the complexity being managed in my mind rather than the code... open to your thoughts though
@Alex.Shalda
@Alex.Shalda Ай бұрын
awesome
@wazzadev7209
@wazzadev7209 27 күн бұрын
A question, say you have a usecase where you'll need to perform a db transaction involving multiple tables, how should this be implemented?
@WebDevCody
@WebDevCody 27 күн бұрын
Good question. I’ll make a video on it
@AlexM86
@AlexM86 Ай бұрын
Is it wrong that I'm using server actions with tanstack query? Specifically for interactive components where user input is required, because I love the success and error workflow that it provides. For get requests I just call server actions in server components in 99.9% of cases.
@WebDevCody
@WebDevCody Ай бұрын
I don't think next recommends using server actions for fetching data. server actions were specifically created for form submissions. If you start using them for fetching data, you may see issues where doing multiple queries in your UI will result in a waterfall because server actions can only run sequentially. I do think server actions are highly coupled with RSC, so if you use server actions, you should probably be using RSC and calling revalidatePath to force your UI to refresh. If all you're looking for is a better success /.error workflow, maybe checkout that ZSA I mentioned.
@RiteshNEVERUNIFORM
@RiteshNEVERUNIFORM Ай бұрын
Which theme is that
@Luisllaboj19
@Luisllaboj19 Ай бұрын
Next.js reccomends having a data-access layer where you make the checks for accessing the data. In your way of architecting your apps I assume that's the "data-access" folder, does that include checks for auth and authorization at all? Or you're trusting the layer above it to do those checks? why if i call (by accident) one of the exported functions from the "data-access" folder directly?
@WebDevCody
@WebDevCody Ай бұрын
I’m trusting the layer above (use case) will check authorization, just like I trust the action validated a user is authenticated. I’ve seen some people put authorization checks in the data access layer,but that feels less maintainable to me imo
@truth8690
@truth8690 Ай бұрын
How does the architecture change when using external APIs instead of the built-in Next.js API routes?
@WebDevCody
@WebDevCody Ай бұрын
You wouldn’t do this in that case, your external api should imo.
@Ahmed_005
@Ahmed_005 Ай бұрын
16:45 would you also recommend co-locating your unit-tests? So your unit tests would be in the same directory as the function that it is testing.
@WebDevCody
@WebDevCody Ай бұрын
unit test yes, e2e tests, probably no
@Danon2001
@Danon2001 Ай бұрын
I'm wondering what about the Dependency Injection. Let's consider the simple use case of having option to connect different DBs. Let's say at the start I will need to use Drizzle, but later I need to switch to Postgress. In such a scenario, I would create a class that takes different DBs and provides simple methods for updating, querying or deleting. Then I could use that class in Persistence layer and provide another abstraction with the methods usch us updateGroupById, etc. Would that class be in the persistence layer or where would you guys put that?
@WebDevCody
@WebDevCody Ай бұрын
That’s an adapter which if following clean architecture should be injected into your use cases. I’m specifically avoiding that in my project because I find it provides zero real benefits at the cost of a harder to understand code base. It helps in regards to unit testing, but we also have jest.mock which achieves the same thing. Refactoring individual persistence methods like I’m doing to connect to different databases isn’t hard to do since I’m using typescript anyway.
@nasko235679
@nasko235679 Ай бұрын
I have a question regarding server actions. So as far as I understand it you're using server actions mostly for writing to the database (which is logical since they are all POST requests). What I don't understand is how do I handle errors if the post request fails and doesn't get pushed to the database. Even in your demonstration where you get the post and you await for it to be published there was no form of error handling (as far as I could tell). Also I had a project where I lazily used server actions for everything (including fetching stuff from db) and while it was working there's gotta be some negative consequences right? The way you do it by fetching directly in the server components seems better and is the right way AFAIK.
@WebDevCody
@WebDevCody Ай бұрын
I use use form hook on all my forms for client side validation errors. If the backend throws an error I use a hook called useServerAction and ZSA which sets state of is error true when the backend throws any errors
@endlessia
@endlessia 26 күн бұрын
Hii Cody, I like this architecture type, everything gets way cleaner and its kinda looks like a backend architecture with Controller and Services, I love it ! I have one question, inside the data-access & uses-cases files do we need to put « use server » ? Or maybe import server-only ? I thought it was necessary 🤔 (even tho I don’t know the difference between both of them lmao)
@WebDevCody
@WebDevCody 25 күн бұрын
I wouldn’t add any react or next related things inside of either. Those should only live in actions or loaders
@endlessia
@endlessia 25 күн бұрын
@@WebDevCody Oh I got it, I see now, so by default these use-cases and data-access are rendered on server. + it’s not related to next so another reason to not add these « use server ». Thank you so much ! 🙏
@JoshuaMcQueen
@JoshuaMcQueen Ай бұрын
What about the loading state? How do you handle that?
@WebDevCody
@WebDevCody Ай бұрын
Suspense with skeleton loaders
@Naveenkumar-kp3qe
@Naveenkumar-kp3qe Ай бұрын
Do we need react query for nextjs projects?
@WebDevCody
@WebDevCody Ай бұрын
if you're using server actions and RSC, probably not really.
@codinginflow
@codinginflow Ай бұрын
Is it possible to teach yourself Clean Architecture? I remember trying to read the book and everything went straight over my head lol.
@denisblack9897
@denisblack9897 Ай бұрын
Just maintain a project for some time and youll come to it naturally😅
@WebDevCody
@WebDevCody Ай бұрын
Honestly his diagram with the circles is a better outline of what you need to do compared to reading the book
@alexald783
@alexald783 24 күн бұрын
How do you handle transactions if you have multiple data access calls? Like how do you keep things still de-coupled?
@WebDevCody
@WebDevCody 24 күн бұрын
I'm not sure what you are asking, this is what I'm doing in this video. I have 2 functions which both make separate drizzle queries.
@alexald783
@alexald783 24 күн бұрын
So I’m referring to using drizzle’s transaction functionality. I really like the pattern you demonstrate but not sure how to use multiple use cases and/or date access function calls under one transaction in a clean re-usable way, if that makes sense
@alexald783
@alexald783 24 күн бұрын
Basically your data access function calls use the database object directly, but don’t accept a transaction object if it was under a transaction
@y8rRMNqiP4mAfHQ7tH6deX
@y8rRMNqiP4mAfHQ7tH6deX Күн бұрын
what is your vscode theme name?
@jonasj2627
@jonasj2627 Ай бұрын
Hey, does anyone have experience using this architecture with Supabase? I'm not sure how to use proper types. I just don't understand how Supabase wants us to create types. I also have a question about joins. Should I create data access functions like getApplicationsWithProfile, or should I call two functions when I need an application and a profile separately?
@WebDevCody
@WebDevCody Ай бұрын
You could have a single method which joins the profiles and returns all the data if you need that performance boost. Doing two function calls isn’t too bad
@HarisVFX
@HarisVFX 19 күн бұрын
I understand this abstracts/separates the 3 layers but could you just handle all of your business logic by chaining another zsa procedure say to check the group and pass it as context to the action etc ? I'm guessing this is inconvenient if you want to get group/role for other purposes/areas in the app?
@WebDevCody
@WebDevCody 19 күн бұрын
That is an option, but I guess I wouldn’t want my business logic coupled to zsa
@LeviCrider
@LeviCrider Ай бұрын
What kind of keyboard you rocking? Sounds immaculate.
@WebDevCody
@WebDevCody Ай бұрын
Klack.app
@joseeavr
@joseeavr Ай бұрын
what keyboard do you use god cody?
@WebDevCody
@WebDevCody Ай бұрын
mac book keyboard, sound effects using klack.app
@joseeavr
@joseeavr Ай бұрын
@@WebDevCody that keyboard sounds neat. thank you god cody
@juanofdark
@juanofdark Ай бұрын
Hey! Nice video! Can you Tello me the name of the theme? Please!!
@juanbarreto5487
@juanbarreto5487 Ай бұрын
what is the theme? i would like to know!
@gamingwolf3385
@gamingwolf3385 Ай бұрын
Hello devCody , this video really helps me For next video , can you explain error handling with drizzle orm ? I am using drizzle orm and postgres-js , and sometimes when i enter duplicate data on unique fields , wow new error and i don't know how to handle it
@WebDevCody
@WebDevCody Ай бұрын
In the use case, you should probably be handling errors, so you should be catching errors from the persistence layer and running other business logic when things go wrong. For example, if you try to insert a record and there is a duplicate, you can either throw an error back to the user so they can change their input, or you could force overwrite the record, it all depends on your business rules.
@theizaananwar
@theizaananwar Ай бұрын
Can u make a tutorial on t3 with sst ion...
@WebDevCody
@WebDevCody Ай бұрын
I haven't really used t3 in a while now
@theizaananwar
@theizaananwar Ай бұрын
@@WebDevCody will be a good exercise if you consider it
@robertm4934
@robertm4934 Ай бұрын
Insanely informative! Thank you! So, for example, if I were using Tanstack/React Query, I would house that logic on the persistence layer right?
@WebDevCody
@WebDevCody Ай бұрын
no, react query is a presentation layer concern.
@stefano8840
@stefano8840 Ай бұрын
Did you stop using Convex?
@WebDevCody
@WebDevCody Ай бұрын
no I still use it for one of my side projects
@omomer3506
@omomer3506 Ай бұрын
Is there a way to download all your knowledge, asking for a friend.... that friend is me... i am that friend I once had to replace my firebase with cloudinary cuz it was freaking slow, and was glad i abstracted, cuz all i had to fo was a few tweaks and write the query once
@5353055
@5353055 Ай бұрын
how about using ddd
@WebDevCody
@WebDevCody Ай бұрын
could you explain how much different DDD would be over what I showed here?
@yanzhang3462
@yanzhang3462 Ай бұрын
老师 很牛逼
@zindev
@zindev Ай бұрын
zsa > next-safe-actions?
@shahzaibshahzaibkhan6480
@shahzaibshahzaibkhan6480 Ай бұрын
This approach is great, but how the hell do you get anything done with all that mental overhead 😵?
@WebDevCody
@WebDevCody Ай бұрын
What part do you feel is overhead? Action calls a use case, use case calls persistence method. That’s basically it
@shahzaibshahzaibkhan6480
@shahzaibshahzaibkhan6480 Ай бұрын
@@WebDevCody In my current setup, I'm just rawdoging trpc with drizzle directly in the procedures, it works great and I don't really have to isolate stuff that much, I don't know man, maybe I haven't made anything that complicated to realize the benefits of this but to me, this is severely excessive 😅. Although, I do aggree with the entities pattern, taht shit is a life saver for both client and server side validation 💯
@BannanaJump
@BannanaJump Ай бұрын
If you actually implement testing in your app, you're implementing a similar structure shown in the video out of necessity. In fact, this is exactly how I'm developing in Next.js
@WebDevCody
@WebDevCody Ай бұрын
you mean unit testing in particular right? Yes, if you're trying to unit test and mock out function calls, then this approach can help a lot.
@BannanaJump
@BannanaJump Ай бұрын
@@WebDevCody yep, exactly
@jazzdestructor
@jazzdestructor Ай бұрын
RIP the beard (though shall be missed 🧔‍♂)............... also just wanted to know if you have a common component just for a particular section of files/folders how do you handle that? add it in common components or make a common components directory for that section itself?
@WebDevCody
@WebDevCody Ай бұрын
if it's something you know you'll be using in many pages, I'd say a top level components directory. If it's something only used 2-3 places only on a single page, I'd co-locate it in a _components directory in that route
@thejamalgillis
@thejamalgillis Ай бұрын
Bro what did you say you can do to SQL ?? 😂 13:01
@WebDevCody
@WebDevCody Ай бұрын
🤣
@miGuHD
@miGuHD Ай бұрын
Dad, why did you shave 😭
@WebDevCody
@WebDevCody Ай бұрын
So that people trust my advice less
@lucahoffmann8695
@lucahoffmann8695 Ай бұрын
the keyboard click sounds are just horrendous 😵‍💫
@WebDevCody
@WebDevCody Ай бұрын
You’re the first person who said they don’t like it 🤔
@lucahoffmann8695
@lucahoffmann8695 Ай бұрын
@@WebDevCody i was listening with ear buds😅
@150-150
@150-150 Ай бұрын
Where is your beard?
@WebDevCody
@WebDevCody Ай бұрын
gone until I get lazy again
@sylarfx
@sylarfx Ай бұрын
the problem with architectures is that people tend to fall into mental masturbation about it and overcomplicate things into hard to maintain state
@WebDevCody
@WebDevCody Ай бұрын
I agree, which is why I don’t fully follow clean arch. I use it more as a guideline
@naughtiousmaximus7853
@naughtiousmaximus7853 Ай бұрын
22 year old Cody
@WebDevCody
@WebDevCody Ай бұрын
🤣
@Its-InderjeetSinghGill
@Its-InderjeetSinghGill Ай бұрын
Bro you looking -10 year from your age😂
@WebDevCody
@WebDevCody Ай бұрын
the power of never going out in the sun
@thanhminh5235
@thanhminh5235 23 күн бұрын
Dislike the vid because you didn't upgrade those extensions and the line wasn't straight
Applying clean architecture to my Next.js project
20:15
Web Dev Cody
Рет қаралды 69 М.
The Story of Next.js
12:13
uidotdev
Рет қаралды 556 М.
Happy 4th of July 😂
00:12
Alyssa's Ways
Рет қаралды 68 МЛН
Каха и суп
00:39
К-Media
Рет қаралды 6 МЛН
KINDNESS ALWAYS COME BACK
00:59
dednahype
Рет қаралды 169 МЛН
*Next-door 10x Software Engineer* [FULL]
4:50
Programmers are also human
Рет қаралды 398 М.
Radical Simplicity
45:53
ThePrimeTime
Рет қаралды 188 М.
Turborepo 2.0 - New UI + Watch Mode?!
6:09
Anthony Shew
Рет қаралды 7 М.
Only The Best Developers Understand How This Works
18:32
Web Dev Simplified
Рет қаралды 88 М.
10 common mistakes with the Next.js App Router
20:37
Vercel
Рет қаралды 195 М.
My Weird Journey To Next.js
24:28
Theo - t3․gg
Рет қаралды 47 М.
It’s time to move on from Agile Software Development (It's not working)
11:07
Why I still choose next.js
19:39
Web Dev Cody
Рет қаралды 19 М.
The Most Important Skill You Never Learned
34:56
Web Dev Simplified
Рет қаралды 180 М.
Happy 4th of July 😂
00:12
Alyssa's Ways
Рет қаралды 68 МЛН