I'm definitely using this library for all server actions now

Поділитися
Вставка
  • Опубліковано 30 лис 2024

КОМЕНТАРІ • 98

  • @JohnCanCode
    @JohnCanCode 6 місяців тому +8

    Good find, buddy.
    A short vid like this explaining your page loading bar would be golden.

  • @melquip7
    @melquip7 6 місяців тому +3

    This is actually really cool. Will use it for sure.

  • @lovrozagar3729
    @lovrozagar3729 6 місяців тому +1

    This seems similar to TRPC but for server actions, cool.

  • @Corey3D
    @Corey3D 4 місяці тому +1

    Would you recommend still using this even after now that NextJS Middleware is executed on server actions as well? Or would it be "overdone" protection?

    • @WebDevCody
      @WebDevCody  4 місяці тому

      I don’t trust middleware for checking auth imo. To easily to misconfigure and leave a page or action exposed

    • @Corey3D
      @Corey3D 4 місяці тому

      @@WebDevCody Thank you, yes I am too skeptical to use just a single solution. mainly due to my newbie NextJS knowledge, I usually protect every step with middleware, the page and actions too (now with using next-safe-action, thanks to you), Not sure if these many auth steps are good for the app overall but I guess more protection is better than none.

  • @filipfiser1045
    @filipfiser1045 6 місяців тому

    Great, I've implemented my own action wrapper, but this seems way cooler.

  • @NaniwaRocky
    @NaniwaRocky 6 місяців тому

    Great stuff as always, can't wait for an in-depth video of your starter kit. As someone who does C# at work & js as a hobby i'm hoping you will add ci/cd with AWS ec2 or other for your starter kit . Many thx for your content!

  • @chrisrudman3495
    @chrisrudman3495 4 місяці тому

    Hey Cody, have you ditched this library now for ZSA? I saw you mention it in a more recent video. Thanks

    • @WebDevCody
      @WebDevCody  4 місяці тому

      Yes, I’ve been using zsa mainly.

  • @SeibertSwirl
    @SeibertSwirl 6 місяців тому +5

    Good job babe!

  • @CodingAfterThirty
    @CodingAfterThirty 6 місяців тому +1

    Sick. Thanks for sharing.

  • @ShivGamer
    @ShivGamer 6 місяців тому

    Lovely video, I just started using server actions and this will help me handle those. If possible could you make a video related to server actions? and if we should use them instead of regular API call. Thanks

  • @durmoth7027
    @durmoth7027 4 місяці тому

    next-safe-action vs zsa? what to use?

    • @WebDevCody
      @WebDevCody  4 місяці тому

      I use zsa because it supports parsing outputs, but next-safe-actions is also good

  • @SonAyoD
    @SonAyoD 6 місяців тому

    Great content as always bro. If you’re using convex db do you need server actions? And what web api or library are you using to get the user IP

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      No with convex you invoke their mutations and actions directly which has its own form of parsing / validation. The ip is just coming from inspecting the headers

  • @brunocascio
    @brunocascio 6 місяців тому +1

    sounds they're taking inspiration on Remix. Good!

    • @anton9410
      @anton9410 6 місяців тому +1

      ohh really, can you explain why exactly since i havent dealt with remix

  • @virtual5754
    @virtual5754 6 місяців тому

    Since you mentioned zod, is there a good way to make it output errors in different locales?

  • @ESArnau
    @ESArnau 6 місяців тому +1

    the idea of using this lib is to mostly use client forms instead of forms in server components, right? I see in docs they say "Functionality is limited in this case"

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      Yes I think so. I use client components for all my forms anyway

    • @ESArnau
      @ESArnau 6 місяців тому

      @@WebDevCody why? Curious

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      @@ESArnau because often I need to show a toast, pop up a banner, show confetti, etc after a user clicks a button. You can’t really do that unless you add things into the query string to show a toast after revalidating the path.

    • @ESArnau
      @ESArnau 6 місяців тому

      @@WebDevCody I see, and why would you use then this next-safe-action approach instead of trpc?

  • @Louisle88
    @Louisle88 6 місяців тому

    Have you ever encountered issues when using useAction to create a form with a file schema?

    • @WebDevCody
      @WebDevCody  6 місяців тому

      what do you mean by file schema? like uploading a file to the server action?

    • @Louisle88
      @Louisle88 6 місяців тому

      @@WebDevCody I think having issues by Zod : z.instanceof(File)

  • @Schisek
    @Schisek 6 місяців тому

    Really nice library. But luckily I never really switched to using server actions and stayed with tRPC for all client component stuff. It essentially has the features this library offers built in. Also I prefer handling loading states, error states and all the good stuff using tankstack query (which is used by tRPC). Server actions are cool if you only have like 1-2 forms, other than that I still recommend tRPC

    • @northerncoder
      @northerncoder 6 місяців тому

      This was what I was wondering. I’ve already understand react-query.. why would I throw that away to learn server actions?

  • @martijnjansen5388
    @martijnjansen5388 6 місяців тому

    Hey cool, thanks for sharing, this will definitely help.

  • @krj666
    @krj666 6 місяців тому

    Hi cody can you share how do you have multiple apps in one Next.js 14 project ?

  • @cas818028
    @cas818028 6 місяців тому

    In your implementation, in your middleware, does that mean every single request has to hit the db to get the current user?

  • @rudraprasadpanigrahy8363
    @rudraprasadpanigrahy8363 6 місяців тому

    Hey cody, make a one shot video of a complete project in next & also websocket ( if possible). But make sure without any 3rd party library like convex, firebase etc..

    •  6 місяців тому

      Something like how do you start a new project, how to set it up, what would you use, etc. Thanks Cody

  • @parkerrex
    @parkerrex 6 місяців тому

    What theme is this? And the gutter colors ?

    • @parkerrex
      @parkerrex 6 місяців тому

      shades of purple // indent rainbow

    • @WebDevCody
      @WebDevCody  6 місяців тому

      Bearded theme stained blue

  • @yugaank100
    @yugaank100 6 місяців тому

    I mean, if you have auth in your application cant use just check if the certain individual exists and has proper access to the protected endpoint? Do you mean for open endpoints?

    • @WebDevCody
      @WebDevCody  6 місяців тому

      Yes, but I’m talking more about parsing input (like verify an email is actually an email format)

    • @yugaank100
      @yugaank100 6 місяців тому

      @@WebDevCody Understood, so something like safeParse?

  • @YuraZavadenko
    @YuraZavadenko 6 місяців тому

    how do u use server action in client component. Like with this startTransition thing, i truly don't get it

    • @WebDevCody
      @WebDevCody  6 місяців тому

      you need to define the server action in a separate file, and if you do revalidatePath or redirect inside the server action, that's when you need a transition where you call startTransition(() => myAction()). The transition is to help keep any button spinners or loaders in place as your application is trying to refresh the other parts of the app after a redirect or revalidation

  • @tarunm
    @tarunm 4 місяці тому

    where is the ActionError coming from in this code

  • @JakobRossner-qj1wo
    @JakobRossner-qj1wo 6 місяців тому +3

    That looks very much like tRPC (Especially on the backend and client side)
    Server Actions do have many advantages but I think for most cases I will use tRPC (client side call)

    • @skyhappy
      @skyhappy 6 місяців тому

      Server actions are unnecessary bloat. Just use a normal API endpoint

    • @JakobRossner-qj1wo
      @JakobRossner-qj1wo 6 місяців тому

      @@skyhappy I dont think so, there are quite nice, especially with this helper. tRPC gives you typesafety and server actions allow you to make your form work even with JS disabled. There are more advantages for both of them but these are the most important ones for me.

    • @PhillipLippi
      @PhillipLippi 6 місяців тому +1

      @@JakobRossner-qj1wo JS disabled, ok. Tell me how many digital projects you'll need JS disabled? maybe 1%? Lets be honest, it's 100% better using Client side for UX / UI purposes. It's not like your application will be heavy and unsafe for not using Server action

    • @JakobRossner-qj1wo
      @JakobRossner-qj1wo 4 місяці тому

      @alaskandonut that why they are better than normal APIs. That was mostly what we were discussing.

  • @kamleshpaul414
    @kamleshpaul414 6 місяців тому

    how you will pass files in safe action

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      I’ll be trying to figure that out soon

  • @monogram6357
    @monogram6357 Місяць тому

    nextjs should integrate this by default

  • @ahmedhassan_saver
    @ahmedhassan_saver 5 місяців тому

    Is there a repo containing your code ?
    i need to take a look at something
    this is outdated, right ?

  • @imkir4n
    @imkir4n 6 місяців тому

    yes im using it.

  • @kirillvoloshin2065
    @kirillvoloshin2065 6 місяців тому +1

    jeez, frontend is complicated (and I am a frontend dev)

  • @avijitchanda7944
    @avijitchanda7944 6 місяців тому

    Bro how you do rate limit can you please tell me

  • @babayaga6172
    @babayaga6172 6 місяців тому

    Hi sir
    I saw rate limiting code in your application ca u give us examples of free rate limiter
    Just like express-rate-limiter
    In express js
    It will be very helpful for us
    Thanks 😊

    • @WebDevCody
      @WebDevCody  6 місяців тому

      I published a video today on it

  • @ElvisMorales
    @ElvisMorales 6 місяців тому

    What's inside your "@/lib/session"?

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      Just wraps next auths get server session

  • @gkiokan
    @gkiokan 6 місяців тому

    Why is this so complicated in react/next? This could be done way simpler. I am the only one thinking so? Not working on react, but like the Content. But this makes me love vue even more when seeing such "simple" things blows up so much code.
    Wouldn't that be handled though middleware group, limiter and cors already?

    • @WebDevCody
      @WebDevCody  6 місяців тому

      I'm not sure what makes this complicated? it's just a function which runs validation using a schema. it's no different from adding a middleware which runs validation against the form post data.

  • @bitkidd
    @bitkidd 3 місяці тому

    You can do all of this without this library. Just drop your auth function in an action and validate the input there as well, that’s it.

  • @j2isndhu
    @j2isndhu 3 місяці тому

    wow

  • @devfren
    @devfren 6 місяців тому

    i gave up on server actions, and nextjs as a whole. dev experience seriously sucks when the project grows in size. I'm finding a better and more performant experience with vite, hono + bun and tanstack router

  • @tsykin
    @tsykin 6 місяців тому

    Would you consider this as necessary in production? How could I protect my server actions without this package?

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      You’d at least want to parse the inputs if parsing is necessary. For example if your server action takes a number for an argument, technically someone could send a string, so you should check that (typescript won’t check it for you at runtime)

    • @tsykin
      @tsykin 6 місяців тому

      @@WebDevCody Thanks for explanation! I will definately check that out

    • @ValipPowa
      @ValipPowa 6 місяців тому

      @@WebDevCody wouldn't zod be checking that FOR you? isn't zod checking on the server? when the actions are on the server?

    • @WebDevCody
      @WebDevCody  6 місяців тому

      @@ValipPowa yes, zod checks it for you, which is why I’m using this library to have zod check for me

  • @codernerd7076
    @codernerd7076 6 місяців тому

    why not just make a post api route'!

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      Because I want to be cool

  • @SheeceGardazi
    @SheeceGardazi 6 місяців тому +1

    lol this is full circle ... add server code into front end and then step by step realise why having api server was actullly a good idea

    • @Fuzbo_
      @Fuzbo_ 6 місяців тому

      Yeah the more I’m seeing additional steps outside of the simple example for server actions, I’m wondering what (if any) benefit there is over something like tRPC.

  • @yarrichar
    @yarrichar 6 місяців тому

    Are you still using upstash for your rate limiting?

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      Right now it’s just in memory because I host on a vps.

    • @iken_ar
      @iken_ar 6 місяців тому +1

      ​@@WebDevCody can you make a video about it,
      most of us using vps/dedicated server rn 😶
      thank you!!

    • @WebDevCody
      @WebDevCody  6 місяців тому +1

      @@iken_ar sure

  • @Kats0unam1
    @Kats0unam1 6 місяців тому +30

    A library to fix a problem inherent to nextjs. And this is why I hate the state of FE development

    • @DesiMatrixXD
      @DesiMatrixXD 6 місяців тому

      Not just frontend development, this is the problem with entire JS ecosystem.

    • @WebDevCody
      @WebDevCody  6 місяців тому +17

      How is that a problem specifically with nextjs? If you made a rest api in express you still need to validate your user inputs

    • @DanteMishima
      @DanteMishima 6 місяців тому

      This is a nextjs problem.... The rest of us in FE don't have these problems

    • @WebDevCody
      @WebDevCody  6 місяців тому +17

      @@DanteMishima but server actions are backend. It sounds like y’all think server actions are front end related features

    • @RedVelocityTV
      @RedVelocityTV 6 місяців тому

      You're clueless man

  • @ThirdWorldUSA
    @ThirdWorldUSA 6 місяців тому

    OMG Sheesh Why?

  • @coltzi
    @coltzi 6 місяців тому

    how about you create a safe api endpoint and add cors so you don't have to overcomplicate some useless bs? like this is a joke

  •  6 місяців тому

    2

    •  6 місяців тому

      Latam moment when this video doesn't load up 😵‍💫