Lucia Auth Email and Password flow with Code Verification: Hono, D1, Cloudflare Workers

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ม.ค. 2025

ความคิดเห็น • 9

  • @andrey.fadeev
    @andrey.fadeev  9 หลายเดือนก่อน +2

    ☕ If you liked this video and want to support my channel, please consider buying me a coffee. Your contribution helps me create more content like this:
    👉 Buy Me a Coffee: www.buymeacoffee.com/andrey.fadeev
    👉 Ko-fi: ko-fi.com/andreyfadeev
    Please also subscribe to my other resources:
    👉 Substack: blog.andreyfadeev.com
    👉 Telegram: t.me/andreyfadeevchannel
    I'm truly grateful for your support, and thank you for watching! 🙏

  • @ross-sanderson
    @ross-sanderson 5 หลายเดือนก่อน +2

    Brilliant tutorial. Your pace and presentation is perfect, but especially appreciate the way you reference documentation along with the tutorial. Keep them coming just like this.

  • @jaymartinez311
    @jaymartinez311 4 หลายเดือนก่อน +1

    Great tutorial. It would be great that in the future you place everything in a folder and its own file but great over view

  • @filosofiadelosgrandes
    @filosofiadelosgrandes 8 หลายเดือนก่อน +1

    What window manager do you have ?, is amazing the way that you have organized the windows 🤩

    • @andrey.fadeev
      @andrey.fadeev  8 หลายเดือนก่อน

      Hi, it is yabai :)

  • @gitpushf3391
    @gitpushf3391 8 หลายเดือนก่อน +1

    can you share vscode settings? looks so nice

    • @andrey.fadeev
      @andrey.fadeev  8 หลายเดือนก่อน +1

      the trick is that it's not vscode :) It is Zed

  • @insensibility
    @insensibility 6 หลายเดือนก่อน +1

    Great work here! Can I request? Maybe like a full-stack app with NextJS or something. :>

  • @vivamohammadi
    @vivamohammadi 8 หลายเดือนก่อน +1

    thanks for your great tutorial , your code in github had the following problem :
    emailVerified' does not exist on type 'User'."
    and I added the below code and it is solved :
    declare module "lucia" {
    interface User {
    email: string;
    emailVerified: boolean;
    }
    }