Stop using typescript env variables wrong

Поделиться
HTML-код
  • Опубликовано: 11 апр 2024
  • env.t3.gg/
    My Products
    📖 ProjectPlannerAI: projectplannerai.com
    🤖 IconGeneratorAI: icongeneratorai.com
    📝 ThumbnailCritique: thumbnailcritique.com
    Useful Links
    💬 Discord: / discord
    🔔 Newsletter: newsletter.webdevcody.com/
    📁 GitHub: github.com/webdevcody
    📺 Twitch: / webdevcody
    🤖 Website: webdevcody.com
    🐦 Twitter: / webdevcody

Комментарии • 52

  • @Mrvituhmincguy
    @Mrvituhmincguy Месяц назад +2

    Thanks for the rec as usual Cody. T3-env has worked well for me in the past

  • @Stallion45
    @Stallion45 27 дней назад

    I've seen this around but never dug into it. Just dropped it in a project. Very cool. Nice to see the quick overview. I should have used this sooner.

  • @kaloyangeorgiev6824
    @kaloyangeorgiev6824 Месяц назад +1

    Did I understood correctly? Using this, if on local you have all variables set it will work, but if in production you have missed for example 1 env variable or mispell it, we will get some error?

  • @SaaSLTDDeals
    @SaaSLTDDeals Месяц назад

    Wow, such a game-changer! Ensuring type safety for environment variables in Next.js is crucial for seamless deployment. Thanks for the tip!

  • @alyahmed7639
    @alyahmed7639 Месяц назад +1

    Great video, but this might break tree shaking, for example let's say you have isProd env variable so webpack will replace this env variables true or false and tree shaking will remove some code based on this values.
    one major use case if you remember redux :D you can add middlewares for dev but you don't want them in production just an example

  • @luiswebdev8292
    @luiswebdev8292 Месяц назад

    super easy to implement! thank you!

  • @anruntxd8711
    @anruntxd8711 Месяц назад

    Wow thank you, I didnt know it existed!

  • @cloudeater9571
    @cloudeater9571 Месяц назад

    Actually JUST did this type of thing recently. Many projects have limits on getting packages approved so went with a getter for env values, simple check for value and error/log otherwise. Then used the getter for each setting in a config file that the app as a whole uses to reference such values, which allows the config file to be slapped with an interface. That allows us to offset the stack overflow limitations of adding a global d.ts file for ProcessEnv with expected variables.
    The real kicker is googling how to do generics for the getter because ain’t nobody memorizes how :P

    • @cloudeater9571
      @cloudeater9571 Месяц назад

      Of note, your solution is hands down a better dev experience - kudos

  • @roach_iam
    @roach_iam Месяц назад +7

    Good video, keep in mind that envs can only be strings, so don't get too carried away with the zod schemas.

    • @WebDevCody
      @WebDevCody  Месяц назад +4

      I think this library automatically parses numbers and booleans as well

    • @shigu.01
      @shigu.01 Месяц назад

      I don't know about t3-env, but you can pass { coerce: true } into a zod number schema

  • @EduarteBDO
    @EduarteBDO Месяц назад

    What if you add a test in the build process that will test all env variables, and a separate ts file that declare the env variables removing the undefined part. Then when building this test can fail and stop the build process. This would remove the dependence need. And you don't need to import {env}, I know This could be worse development experience but it could have some advantages.

  • @Openbyt
    @Openbyt Месяц назад +1

    Hey, what's the VS Code theme you've got going on?

  • @jorgesa4244
    @jorgesa4244 Месяц назад +2

    What are you using now instead of t3 stack?

    • @perc-ai
      @perc-ai Месяц назад

      supabase

  • @nhatvominh3387
    @nhatvominh3387 Месяц назад

    can someone tell me his extension theme he is using ?
    thanks you

  • @AneeshSaravuKarekad
    @AneeshSaravuKarekad Месяц назад

    Is environment validation in runtime really necessary just to get type inference? I would rather move the env validation to a build step before deploying. Let me know your thoughts. Great work on the consistency!

    • @WebDevCody
      @WebDevCody  Месяц назад

      It’s just a little extra help to consolidate all env variables. I’ve been on apps where the same env variable is imported in like 10 files; this helps centralize the config a bit

    • @AneeshSaravuKarekad
      @AneeshSaravuKarekad Месяц назад +1

      @@WebDevCody Ah I do suggest having a centralized config file for environment variables, but I don't like running validation on the config in runtime.

  • @user-jm1qz4dj9l
    @user-jm1qz4dj9l Месяц назад

    Can you show all your extensions?

  • @Support-Phalestine
    @Support-Phalestine Месяц назад +1

    bro can you guide me is it valuable to learn c# .netcore at this time is it worth it or not ??

    • @WebDevCody
      @WebDevCody  Месяц назад

      I’ve never had a .net job, but I know there are jobs using both

    • @Dom-zy1qy
      @Dom-zy1qy Месяц назад +1

      I am assuming .net would be a bit better for job prospects, seems less competitive than js world. I really am just guessing tho.

    • @Support-Phalestine
      @Support-Phalestine Месяц назад +1

      @@Dom-zy1qy exactly bro that's the point

  • @ewwitsantonio
    @ewwitsantonio Месяц назад

    Great, thank you! I have video topic suggestion: documentation creation.
    I'm curious what your insights me be on writing documentation for projects/tools, if that's something you do, and if there are any tools that help you to do so. Thanks!

    • @WebDevCody
      @WebDevCody  Месяц назад +1

      I think I’ve used docsify, swagger also is good for api docs

    • @ewwitsantonio
      @ewwitsantonio Месяц назад

      @@WebDevCody thanks so much!

  • @Openbyt
    @Openbyt Месяц назад

    Please tell me What is your vs code theme name? Sir

  • @ivanbragin7932
    @ivanbragin7932 Месяц назад +1

    Theo approved video

  • @iiilllii140
    @iiilllii140 Месяц назад

    Does it only work with zod? My project uses valibot.

    • @theklr
      @theklr Месяц назад

      They have work in progress to decouple the validator.

  • @tsykin
    @tsykin Месяц назад

    I usually just create utils file where I define and export object with all env.process strings to then reference them in other files.
    Do you think that's smart or not really?

  • @SeibertSwirl
    @SeibertSwirl Месяц назад +1

    Good job babe!

  • @qizhang5749
    @qizhang5749 Месяц назад

    I use joi and make a schema for my environment variables

  • @filipfiser1045
    @filipfiser1045 Месяц назад

    Cool package, but I don't know about having so much packages inside my project. I already have a lot.

  • @plusquare
    @plusquare Месяц назад

    typesafe env vars are great until u forgot to update the env vars for CI and that shit breaks anyway

  • @flyingpanhandle
    @flyingpanhandle Месяц назад +18

    you really don't need multiple third party libs to do this.

    • @WebDevCody
      @WebDevCody  Месяц назад +3

      Multiple? Who uses multiple?

    • @flyingpanhandle
      @flyingpanhandle Месяц назад +2

      @@WebDevCody 1. T3-env. 2. Zod.

    • @WebDevCody
      @WebDevCody  Месяц назад +3

      @@flyingpanhandle oh I see what you mean

    • @user-pj4ju1oi1l
      @user-pj4ju1oi1l Месяц назад +1

      @flyingpanhandle Could you give an example without third party libs? Or do you mean only T3-env lib is necessary to achieve something similar.

    • @theklr
      @theklr Месяц назад

      Can you give solutions?