How to Setup Node.js with TypeScript in 2023

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 ต.ค. 2024
  • Learn how to setup Node.js with TypeScript while supporting native ES modules. Use the new NodeNext option to easily interop between CommonJS and ES modules in the same project.
    Full Lesson and Source Code fireship.io/le...

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

  • @chenlim2165
    @chenlim2165 ปีที่แล้ว +323

    Thanks for this! Setting up a new Node project in 2023 is:
    1 hour setting up the build environment
    1 hour setting up linting
    1 hour getting webpack to work
    1 more hour optimizing everything
    3 hours researching Deno / Bun / Vite, then deciding it's not worth it
    1 hour wondering if you're better off with plain JS
    1 hour remembering what you wanted to build

    • @mucookul
      @mucookul ปีที่แล้ว +5

      That’s exactly why I skip half of that stuff

    • @edoardoschnell
      @edoardoschnell ปีที่แล้ว +7

      How is vite not worth it? 90% of use cases is just install boom works

    • @-rate6326
      @-rate6326 ปีที่แล้ว +2

      Ask c++ Devs

    • @kollpotato
      @kollpotato ปีที่แล้ว +4

      Just do bun init

    • @JC-fd8ho
      @JC-fd8ho 11 หลายเดือนก่อน

      about what ?@@-rate6326

  • @ivanb493
    @ivanb493 ปีที่แล้ว +181

    I feel like it might be a good idea to cover the ts-node package next time which is nice during development

    • @lsudo
      @lsudo ปีที่แล้ว +3

      @@vaaski that's basically react my friend

    • @CTSSTC
      @CTSSTC ปีที่แล้ว +1

      @@vaaski tsx is for react components; we don't need that additional weight here if you're just trying to write some non-frontend code.

    • @CTSSTC
      @CTSSTC ปีที่แล้ว

      @@alanbixby I tend to lean into ts-node, but now it's sounding like a nightmare yet again lol; I'll have to look into esbuild kit I guess lol; yet another tool :RIP:
      They used to say to never use ts-node for production, then you could; all the answers are an answer in one point in time and then never again down the road as they become the "wrong answer" lol
      I'm just glad to have node 18 here and the older versions dying off 🎉
      It's all still a pain though.

    • @That_Darned_S
      @That_Darned_S ปีที่แล้ว +2

      @@lsudo No, we're not talking about react or jsx/tsx. Tsx is an npm package, does the same thing as ts-node but it's newer.

    • @danielegvi
      @danielegvi ปีที่แล้ว +2

      @@lsudo tsx is a CLI program, short for typescript execute. it uses esbuild to transpile all imports to js in memory on demand really fast. it also supports jsx/tsx the language extension, which is a bit confusing at first.

  • @CTSSTC
    @CTSSTC ปีที่แล้ว +50

    Every year for advent of code, I spend a majority of my time configuring my baseline JS/TS environment rather than working on the coding problems, which is fun because I get to see how much things have changed just like this video hits on 😆
    Edit: I'm excited to see this full course and how it evolves ;D 🎉

    • @zettca
      @zettca ปีที่แล้ว +1

      Change to Deno. You'll get TS, top-level async, ESM, external modules, linting/formatting with 0 config

    • @codeman99-dev
      @codeman99-dev ปีที่แล้ว +1

      @@zettca No. I can't use Deno at work. I wouldn't learn Zig right now for the same reason. Not worth it. I need to know the node ecosystem.

    • @zettca
      @zettca ปีที่แล้ว +3

      @@codeman99-dev we're talking about AoC, not work.

    • @codeman99-dev
      @codeman99-dev ปีที่แล้ว +1

      @@zettca Yes. It is a great opportunity to catch up and learn what is new. It is hard to do that if you jump ship.

    • @marvinxu2950
      @marvinxu2950 11 หลายเดือนก่อน

      @@zettca Just curious, what is AoC?

  • @schmidtdisturbr
    @schmidtdisturbr ปีที่แล้ว +6

    A thousand thank-yous for this! I wish this video were linked in the TypeScript official getting started docs. As an infrequent JavaScript developer starting to dig into the TypeScript ecosystem, the legacy module situation is a huge stumbling block to get past. Love your straightforward presentation.

  • @bellabianchi7667
    @bellabianchi7667 ปีที่แล้ว +3

    OMG I literally sat there with this exact issue an hour ago and couldn’t resolve it and this appears in my subscriptions - THANK YOU!!

  • @iatheman
    @iatheman ปีที่แล้ว +607

    This guy is always reminding me why I
    1. Hate the JS ecosystem with a passion
    2. Admire the JS developers that maintain their sanity and build stuff with it

    • @Caborrrl
      @Caborrrl ปีที่แล้ว +87

      Requiring the .js extension from TS was the most stupid TS idea in long time.

    • @thekwoka4707
      @thekwoka4707 ปีที่แล้ว +11

      @@Caborrrl well, it's technically the spec.
      The TS system is very "what the spec is".
      Having unsuffixed imports is not valid js.

    • @filipmajetic1174
      @filipmajetic1174 ปีที่แล้ว

      @@Caborrrl there's a compiler option "esModuleInterop" that fixes it

    • @Caborrrl
      @Caborrrl ปีที่แล้ว +5

      @@filipmajetic1174 No. The esModulelnterop is not for that or anything related to that. Wtf?

    • @iatheman
      @iatheman ปีที่แล้ว

      @@shapelessed Just realized my handle is the weird generated one. But I've been there with another stack, same pain.

  • @dubble_cuppachino
    @dubble_cuppachino ปีที่แล้ว +19

    The module field is pretty much abandoned. It's only really used by bundlers. The correct way to tell node how to import your code is to use the "files" and “exports” fields. Not trying to sound like a stackoverflow comment, just wanted to share a thing I picked up after diving into all this stuff recently. Excited to watch the rest, I love your content!

  • @itsinphy
    @itsinphy หลายเดือนก่อน

    Thanks a lot! ❤
    I was able to figure this out the hard way, but I'm glad I stumbled upon this video for a) confirming that I did it correctly and b) future references.
    Cheers!

  • @TheBeastDispenser
    @TheBeastDispenser ปีที่แล้ว +3

    Thank you! This could not come at a better time. For the life of me I could not get TypeScript working with my GraphQL setup but your review of the tsconfig files cleared up my confusion. My main issue was needing to add the .js file extensions to the imports.

    • @erwin.agpasa
      @erwin.agpasa 10 หลายเดือนก่อน

      me tooooo

  • @fizzdev
    @fizzdev ปีที่แล้ว +11

    top notch video, can't wait for the 2024 guide

    • @nithinrajendran3091
      @nithinrajendran3091 6 หลายเดือนก่อน

      Did the 2024 guide drop yet? bro left us hanging..

    • @fizzdev
      @fizzdev 6 หลายเดือนก่อน

      @@nithinrajendran3091 sadly not.. we'll have to wait a few more months

  • @shobhitsingh6271
    @shobhitsingh6271 7 หลายเดือนก่อน

    Million likes for this video! I spent the entire day debugging until I stumbled upon your video. Turns out, the issue was that I was importing a common JS package without specifying {"type":"module"} in the package.json. Thank you so much! ❤❤❤❤❤

  • @MisterNorthernCanuck
    @MisterNorthernCanuck ปีที่แล้ว +1

    I spent 3 hours on fixing this. Thank you so much.

  • @ukaszzbrozek6470
    @ukaszzbrozek6470 ปีที่แล้ว +132

    Why we need to target .js files when they extensions are .ts ? It is so confusing.

    • @stxnw
      @stxnw ปีที่แล้ว +81

      You don't. Jeff just doesn't know about the esModuleInterop option on TypeScript.

    • @18.j
      @18.j ปีที่แล้ว +9

      When you compile you run the .js file and you target the other .js files, typescript won't change your import to ts so you declare it with .js that's why...

    • @stxnw
      @stxnw ปีที่แล้ว +7

      @@18.j Wrong

    • @cyrus01337
      @cyrus01337 ปีที่แล้ว +1

      @@stxnw How does TS handle this then?

    • @paoloose
      @paoloose ปีที่แล้ว +4

      ​@@stxnw when I dont specify the files extension, "esModuleInterop" set to true gives me:
      Relative import paths need explicit file extensions in EcmaScript imports when '--moduleResolution' is 'node16' or 'nodenext'
      When using .ts files, The vscode hints say:
      "An import path can only end with a '.ts' extension when 'allowImportingTsExtensions' is enabled.ts(5097)"
      When I enable it, all errors are gone, but the typescript compiler throws:
      "error TS5023: Unknown compiler option 'allowImportingTsExtensions'."
      So weird.

  • @codewithguillaume
    @codewithguillaume ปีที่แล้ว

    Yess!!!! I was hoping to see this video one day on your channel :)

  • @danish7335
    @danish7335 4 หลายเดือนก่อน

    you don't know how much you helped me.. thanks mate

  • @zyrenth
    @zyrenth ปีที่แล้ว +6

    Amazing tutorial, It's definitely a good tutorial for beginners, keep up the good work!

  • @ThePotatoChronicler
    @ThePotatoChronicler ปีที่แล้ว +2

    Deno NPM compatibility is nearly there! We're so close. Most libraries just work OOTB already. I am running from node with the speed of light my man, at least for my personal projects

  • @Grim_Nerd
    @Grim_Nerd ปีที่แล้ว +3

    I always find myself having a mini heart attack when watching your videos because you'll occasionally hear a baby crying in the background and I ALWAYS think it's my baby. I'm literally home alone right now and still paused the video to listen out for him crying :')

  • @NoPudieronConGuevara
    @NoPudieronConGuevara ปีที่แล้ว +3

    It's truly a peculiar experience see how this channel's owner is gradually descending into madness by the hand of web technologies mostly.
    I just can't look away... keep the hard work

  • @Novacification
    @Novacification 5 หลายเดือนก่อน

    An hour looking for a minimal typescript setup with clear explanations. I should have known to come here immediately.

  • @alecdorasandler6690
    @alecdorasandler6690 7 หลายเดือนก่อน +1

    Thanks a shit ton for this! I wasted so much time fixing the imports with .ts ext.

  • @gustavohenriquejunkes3276
    @gustavohenriquejunkes3276 หลายเดือนก่อน

    Just soooo coool. Great video man

  • @rign_
    @rign_ ปีที่แล้ว +1

    I need to work with pure javascript to get CommonJS working, because of dynamically use the code and re-import it on runtime is such a blessing as well a curse. But for my project and personal works, it's perfectly fine.

  • @Ma1ne2
    @Ma1ne2 ปีที่แล้ว +2

    Looking forward to part two if this video in a month when all of this changed again :D

  • @Zagoorland
    @Zagoorland ปีที่แล้ว +3

    You should make a movie about package managers, only few people know about PNPM for example, but for now it's the fastest and most space efficient solution!

    • @LarsRyeJeppesen
      @LarsRyeJeppesen ปีที่แล้ว

      And messy. The amount of time I have spent resolving fcked up symlinks is countless

  • @joseph0x45
    @joseph0x45 ปีที่แล้ว +1

    The video I never knew I needed, thanks Jeff :)

  • @PetarKostadinov-e1x
    @PetarKostadinov-e1x ปีที่แล้ว

    Exactly what I needed . Perfect video!

  • @HackSoft
    @HackSoft ปีที่แล้ว

    Kudos for the concise & resourceful video 🙌

  • @michaelmenard8614
    @michaelmenard8614 ปีที่แล้ว +3

    Awesome video! Any chance there is a pt. 2 coming with jest, eslint, prettier, and husky?

  • @SamyarBorder
    @SamyarBorder ปีที่แล้ว

    evey once in a while i come back and watch this video

  • @srinivasnahak3473
    @srinivasnahak3473 ปีที่แล้ว

    You're a magician for sure!!

  • @flatmapper
    @flatmapper ปีที่แล้ว

    Love it! Looking forward to watching your full course. But please do it for experienced developers too

  • @d-landjs
    @d-landjs ปีที่แล้ว

    Excellent tutorial!

  • @ggorg0
    @ggorg0 ปีที่แล้ว +3

    You forgot about strict mode in tsconfig.json!

  • @zvrk
    @zvrk ปีที่แล้ว +7

    For those that want nodemon to watch over file changes:
    add
    "ts-node": {
    "esm": true
    }
    to tsconfig.json
    And if your shell complains like mine did use ( npx nodemon src/index.ts ) this should work
    Also add ts-node globally with ( npm i -g ts-node ) really not sure if this is needed but I did it anyway

  • @AnweshAdhikari
    @AnweshAdhikari ปีที่แล้ว

    Time travel is real! Jeff is one month ahead of us!😂❤

  • @phaZZi6461
    @phaZZi6461 ปีที่แล้ว

    i was here for the module thing, thanks

  • @mmvarma.p
    @mmvarma.p ปีที่แล้ว +6

    Great video as always. From 3.09 secs to 3.28 secs, your voice sounded different. Is it me or has anyone noticed it? R u well bro. Please stay safe and sound. Looking forward to your next video.

  • @riddixdan5572
    @riddixdan5572 ปีที่แล้ว +16

    I'm still confused as to why we need to specify file extention when we import. Couldn't node/TS resolve it itself based on the actual file it is importing?

    • @mcvgs1780
      @mcvgs1780 ปีที่แล้ว

      I kind of remember Ryan Dahl spoke about this being needlessly complex to implement and (not so sure if I remember this right) hogs resources. If he were given a chance to do Node all over again he would not do it.

    • @dusliangames
      @dusliangames ปีที่แล้ว +3

      I just use tsc-alias to fix the import file extension after compiling. It's easier and cleaner. And handles the path aliasing. I would recommend using nodenext for moduleresolution, but for the module option to use esnext or commonjs

  • @usd00
    @usd00 ปีที่แล้ว +3

    Is it only me who feels like Jeff's voice is changing constantly over the video...?

  • @0brine
    @0brine ปีที่แล้ว +1

    Lol i needed that exactly 2 days ago xD

  • @voychoi9923
    @voychoi9923 ปีที่แล้ว

    Great content as always

  • @aunimhassan7465
    @aunimhassan7465 ปีที่แล้ว

    life saver video

  • @kklowd
    @kklowd ปีที่แล้ว

    Bruh how did you know I was setting up a project to with both esm and cjs you really are a wizard 👀

  • @kvelez
    @kvelez 29 วันที่ผ่านมา

    Good video.
    tsconfig.json (just create the ./scr and ./dist directories):
    {
    "compilerOptions": {
    "target": "ESNext",
    "module": "commonjs",
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,
    "strict": true,
    "skipLibCheck": true,
    "rootDir": "src",
    "outDir": "dist",
    },
    "include": [
    "src/**/*.ts"
    ],
    "exclude": [
    "node_modules",
    "test",
    "dist",
    ]
    }

  • @stefankracht
    @stefankracht ปีที่แล้ว

    Good timing on that video, since advent of code is around the corner ❤

  • @danieldosen5260
    @danieldosen5260 ปีที่แล้ว

    Great use of

  • @abhaynath5833
    @abhaynath5833 ปีที่แล้ว

    Madness....... ?
    THIS IS JavaScript ecosystem 🔥🔥🔥🔥🔥🔥

  • @VideoBunt
    @VideoBunt ปีที่แล้ว +6

    1) ts-node + nodemon could be very helpful
    2) npm i tsconfig@ for certain node version could be helpful, just extends it

    • @stxnw
      @stxnw ปีที่แล้ว

      no. ts-node is trash

    • @VideoBunt
      @VideoBunt ปีที่แล้ว

      @@stxnw why? And what can replace it?

    • @stxnw
      @stxnw ปีที่แล้ว

      @@VideoBunt swc-node

    • @LarsRyeJeppesen
      @LarsRyeJeppesen ปีที่แล้ว

      ts-node is horrible. Do not use it please

    • @LarsRyeJeppesen
      @LarsRyeJeppesen ปีที่แล้ว

      @@VideoBunt tsup (esbuild) in watch mode

  • @shaded4438
    @shaded4438 11 หลายเดือนก่อน

    the moth really cheered me up i cant lie

  • @dusliangames
    @dusliangames ปีที่แล้ว +30

    Importing a js file in typescript that doesn't exist on the file system is really confusing and simply weird. It's way better to use a tool like tsc-alias to fix the imports as a compilation step instead of having to change every import of every source file in every project.

    • @vikingthedude
      @vikingthedude ปีที่แล้ว +1

      Yeah I don’t like it

    • @adam-user
      @adam-user ปีที่แล้ว +1

      Is there a way to resolve this that works both during compile time and in VSCode?

  • @joseandkris
    @joseandkris ปีที่แล้ว

    This is amazing. Thank you :)

  • @Zwiebelgian
    @Zwiebelgian ปีที่แล้ว +210

    Deno now supports npm (atleast that is what their propaganda says) so now may be a good time to switch

    • @brucewayne2480
      @brucewayne2480 ปีที่แล้ว +6

      Why ? I just want to know what will you gain ?

    • @Zwiebelgian
      @Zwiebelgian ปีที่แล้ว +53

      @@brucewayne2480 Built-in Typescript support, better speed, cleaner directories. I don‘t actually know, I am not a backend developer

    • @brucewayne2480
      @brucewayne2480 ปีที่แล้ว +5

      @@Zwiebelgian it's not a lot of work to setup a typescript project , cleaner directories I'm not seeing any problem, speed not sure , I've not seen any benchmarking

    • @jakob7116
      @jakob7116 ปีที่แล้ว +39

      @@Zwiebelgian yeah, it also has better apis under the Deno. namespace and a std library. You also get less config files, lots of built in stuff like linter so you don’t have to do that yourself, more secure, faster http server, better browser compatibility, the apis mostly use promises (and sync versions) instead of callbacks, you can run code directly from a url, even Ts code and so on
      The npm support doesn’t work on all packages perfectly just yet but soon:tm:

    • @Dominik-K
      @Dominik-K ปีที่แล้ว +8

      For me personally the sandboxing capabilities are nice

  • @GuildOfCalamity
    @GuildOfCalamity 9 หลายเดือนก่อน

    Great video.
    This reminded me of the reason I don't like web dev... too many moving parts just to get a simple webpage to run.

  • @steveanthonyluzquinosagama7450
    @steveanthonyluzquinosagama7450 ปีที่แล้ว

    That's exactly why I created typescript-project-generator. It will handle all the configs for using TS with Node.js. Give it a try :)

  • @xDemorn
    @xDemorn ปีที่แล้ว +1

    Can you make a tutorial on how to host a node app on IIS?

  • @Alex-lt4kr
    @Alex-lt4kr 11 หลายเดือนก่อน

    Thank you, i was struggling with the tsconfig trying to get the top level await feature working

  • @grantdoyle1259
    @grantdoyle1259 ปีที่แล้ว +4

    2023? Getting a little ahead of ourselves aren't we?

  • @thepowerhat
    @thepowerhat ปีที่แล้ว +14

    For developing nodejs backend, I generally use babel with watch mode and nodemon to have very fast server restart on file save. I'll check this out but I'll probably still prefer sticking with a faster transpiler than tsc

    • @double-agent-ly
      @double-agent-ly ปีที่แล้ว +5

      why use babel when u have vite or even the newer tool, rome

    • @thepowerhat
      @thepowerhat ปีที่แล้ว +5

      @@double-agent-ly Vite for backend? Hmm

    • @fred.flintstone4099
      @fred.flintstone4099 ปีที่แล้ว +1

      For developing frontend I use Vite for very fast hot reload on file save.

    • @shubitoxX
      @shubitoxX ปีที่แล้ว +1

      Babel is not fast

    • @thepowerhat
      @thepowerhat ปีที่แล้ว +1

      ​@@shubitoxXSure faster than tsc, because it just ignores the types, it doesn't type validate the AST like tsc does..

  • @himanshukapoor5586
    @himanshukapoor5586 5 หลายเดือนก่อน

    "noEmit": true,
    "allowImportingTsExtensions": true,
    adding these two will allow you to import ts files as .ts files only.

  • @shapelessed
    @shapelessed ปีที่แล้ว +3

    npm init
    tst --init
    Done.
    Now, my way of doing this is (as a proud developer) is scripting all of this. Hosting CommonJS and ESM project templates on a NodeJS-based, fully automated file server that's using my own database that's using its own virtual file system and cloning it whenever I need.
    Yes It's overcomplicated for a reason don't argue just accept that life isn't always the way it should be.

  • @kalebercanbrack8857
    @kalebercanbrack8857 ปีที่แล้ว +2

    Just yesterday I was dealing with something similar with Fastify and Typescript. I wanted to be using ESM, and went through the whole troubleshooting process to figure out the right tsconfig settings, but due to the way a lot of Fastify packages were exporting their types it broke being able to import the default export from it. I don't know the specifics, but it was just super annoying that this glorified linter was causing such an obnoxious bug for code that worked fine without it.
    However, Typescript in Deno is a beautiful experience. Largely I think because you don't have to worry about commonJS. Makes me wonder if as Deno gets more popular, the TS Node people will move over to it

    • @vaultofmyths
      @vaultofmyths 10 หลายเดือนก่อน

      Except deno breaks your code in ways you can't imagine because of their weird engine

  • @flatmapper
    @flatmapper ปีที่แล้ว

    Thank you so much!

  • @EdharEzenvaAvuzi
    @EdharEzenvaAvuzi ปีที่แล้ว

    Thank you so much!

  • @xrr-1
    @xrr-1 ปีที่แล้ว +2

    0:45 javascript at its peak

  • @NareshKumar-vt4sh
    @NareshKumar-vt4sh 3 หลายเดือนก่อน

    Thanks a lot.

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

    Who has the error: ERR_UNKNOWN_FILE_EXTENSIONr
    You need to install tsx instead of ts-node and change it in nodemon.json if you use it, in the exec line, accordingly.

  •  ปีที่แล้ว +3

    Don't forget to add the "--enable-source-maps" flag when running your compiled code with node, otherwise the sourcemaps will be ignored.

  • @Roman-of9pl
    @Roman-of9pl ปีที่แล้ว

    Every time someone is sharing their project setup I recall that scene from American Psycho.

  • @letsoverengineer
    @letsoverengineer ปีที่แล้ว

    The moment when you insert a voice over from another recording session x)

  • @nicholaskoffler294
    @nicholaskoffler294 ปีที่แล้ว

    looking forward to that typescript course

  • @salsichalivre5401
    @salsichalivre5401 ปีที่แล้ว

    Great, I only needed 3 minutes to give up on frontend dev.

  • @אלעדר
    @אלעדר ปีที่แล้ว

    Excellent!

  • @abdulazeem1880
    @abdulazeem1880 ปีที่แล้ว

    Please make a video on pr-commit hooks

  • @SirBalls
    @SirBalls ปีที่แล้ว +3

    As someone in 2023, I can confirm this is how you setup Node.js with TypeScript

    • @SirBalls
      @SirBalls ปีที่แล้ว

      @@minorikoaki No, other way around

    • @LarsRyeJeppesen
      @LarsRyeJeppesen ปีที่แล้ว

      No no no, don't use tsc, and don't use ts-node.

    • @SirBalls
      @SirBalls ปีที่แล้ว

      @@LarsRyeJeppesen Sorry, in 2023, we still use tsc for some reason... I don't make the rules

  • @davidnagli
    @davidnagli ปีที่แล้ว +1

    Funny how this video is only a day old and I already out of date with the new Node 19 release (which supports imports without the .js file extension)

  • @Steve-Richter
    @Steve-Richter ปีที่แล้ว

    was hoping you would cover how to run the equivalent of nodemon when a change is made to the typescript source code.

  • @Mauro-K
    @Mauro-K ปีที่แล้ว

    I like the video, I hated the topic, but it was good content

  • @LarsRyeJeppesen
    @LarsRyeJeppesen ปีที่แล้ว +1

    tsc? What about Turbo, EsBuild etc? Why use npm when we have pnpm?

  • @ertagon
    @ertagon ปีที่แล้ว +1

    Do Babel next.

  • @nekony3563
    @nekony3563 ปีที่แล้ว +1

    I recommend using @tsconfig/bases packages for a predefined config for you environment, so you don't have to remember what put into "target" and other properties.

  • @resourcelookup8678
    @resourcelookup8678 ปีที่แล้ว +1

    Super

  • @Disorrder
    @Disorrder ปีที่แล้ว +1

    Or simply install nest or another boilerplate starter

  • @kishiue
    @kishiue ปีที่แล้ว +3

    I'd advise using a runner like TSX or Esbuild runner. This strips the types and makes it much less painful to develop. Type checking is gradually moving in the direction of being a CI step rather than part of the build step.

  • @ricardorien
    @ricardorien ปีที่แล้ว +2

    Express + TypeScript, please. With nice paths like "import ASDF from @componets/navbar" Please!

    • @AngelHdzMultimedia
      @AngelHdzMultimedia ปีที่แล้ว

      Just add the path alias in tsconfig.json for the "@components" or even better, just point "@" to the src folder,
      so you can "@/anything".
      Then, install @types/node and @types/express as development dependencies.
      If you use dotenv and cors, install @types/dotend and @types/cors.

    • @LarsRyeJeppesen
      @LarsRyeJeppesen ปีที่แล้ว

      @@AngelHdzMultimedia That won't work well in many environments.

    • @AngelHdzMultimedia
      @AngelHdzMultimedia ปีที่แล้ว

      @@LarsRyeJeppesen yeah, there are a lot of issues in Node and TypeScript, and each bundler have its own solutions. But for now, that's the solution and packages like module-alias or better-module-alias.
      But if you know of a better solution, please comment it instead of being secretive about it.
      Cheers!

  • @themarksmith
    @themarksmith ปีที่แล้ว +1

    How about a demo on how to make a basic PWA?

  • @eestpavel
    @eestpavel ปีที่แล้ว +2

    Lately I found myself better setting vite-node rather than trying to set all that experimental flags to run my code with modern day devfeatures

  • @tacticalassaultanteater9678
    @tacticalassaultanteater9678 ปีที่แล้ว +21

    It's important to highlight that this is only one way to set up Typescript with Node in 2023. I have different priorities, revolving more around minimizing surprises than around efficiency, so I do almost everything differently, and I don't expect my values to turn around completely next year either.
    This tutorial is valuable because it's a complete description of an error-free setup, not because the statements within are universally optimal.

    • @DemPilafian
      @DemPilafian ปีที่แล้ว +7

      It feels like this message is trying to tell us something without actually saying what it is. Or maybe I'm just missing something obvious. Can someone express the "different priorities" in more blunt terms?

    • @asiraky
      @asiraky ปีที่แล้ว

      Or just use ts-node

  • @giorgiobellisario
    @giorgiobellisario ปีที่แล้ว +1

    All these typescript problems make me solve with Vite (if Node.js required) or... Deno!

  • @rubenheymans1988
    @rubenheymans1988 ปีที่แล้ว +3

    why not make a nestjs video? Nest is a framework for building efficient, scalable Node.js server-side applications. It uses modern JavaScript, is built with TypeScript (preserves compatibility with pure JavaScript) and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).

    • @NH-cb2jg
      @NH-cb2jg ปีที่แล้ว +1

      copy paste dummy

  • @djibrilmugisho5874
    @djibrilmugisho5874 ปีที่แล้ว

    I think you should add the watch option for watching new changes instead of compiling everything manualy

  • @kumekster
    @kumekster ปีที่แล้ว

    Maybe quick guide here on how to set eslint?

  • @himawaridev
    @himawaridev 2 หลายเดือนก่อน

    use full bro

  • @twentyeightO1
    @twentyeightO1 ปีที่แล้ว +5

    The ritual of harakiri is easier than this.

  • @Novacification
    @Novacification ปีที่แล้ว

    Could you go over some scenarios for building and publishing. For instance, I'm creating a base server implementation (basically an express wrapper with auth middleware) and I would like to publish it to a local npm registry (Verdaccio).
    It publishes everything, not just the dist folder, and I'm not sure how to handle dependencies.
    I have some issues with importing the server package as well, needing to do a second deconstruction of the default export for the dependency.
    A good up to date minimal setup for building and publishing would be really cool! Something with build to dist, publish from dist and importing the package somewhere (maybe even with import instead of require)

  • @irun_mon
    @irun_mon ปีที่แล้ว

    I just started learning coding (JS) and i found these channels of yours, I usually just watch to see what will I learn in the future but damn this one looks complicated, you do this everytime to build a project??

    • @niton6474
      @niton6474 ปีที่แล้ว

      That's the neat part: it's even worse. Depending on the frameworks, libraries that you use you might need to use a completely different tool chain. Or maybe you need to include a frontend framework - much luck without the init of that framework.
      But! If you just use a "plain" server side express app this setup should be fine every time

  • @xoutaku7600
    @xoutaku7600 ปีที่แล้ว +1

    get well bro

  • @jaroslavhuss7813
    @jaroslavhuss7813 ปีที่แล้ว +1

    Nah, this is one of the reasons why I use Nest.js - TypeScript by default, no hassle, no cry - just awesome architecture, typescript and more time for playing Witcher 3 after the work is done.

  • @Dysfunctional704
    @Dysfunctional704 ปีที่แล้ว +1

    Can you make a video on the T3 Stack from Theo?

  • @marna_li
    @marna_li ปีที่แล้ว

    I went through this a couple of months ago. But there might be some starter templates. At least there should be one.