It was the best node environment that I have seen so far, it was really great, thank you
@hidden_from_you3 жыл бұрын
I am a front-end developer, but your tutorial very useful for me, great job thanks! Wishing for more than a million views!
@CodeDunks3 жыл бұрын
Appreciate it Rinat!
@Scetils3 жыл бұрын
This was such a solid first video Leo! Really appreciate it and can't wait to go through more. 🤺
@TobiAkinyemi-mq5mh Жыл бұрын
👌, thank you for taking time to explain why you did something and a brief description on what it's actually doing .
@serhiiocean26623 жыл бұрын
the best guide that I've found (not on youtube but in general) that covers everything that I needed! I literally spent a few hours reading some articles/watching videos but non of it was like this video, thanks!
@CodeDunks3 жыл бұрын
Glad I was able to be of some help!
@sanjitselvan53482 жыл бұрын
The knowledge you've given us in this video is priceless. Thank you! 🙌
@varadharajmahendran Жыл бұрын
AQQ
@twiksify2 жыл бұрын
I should put this on repeat just because you deserve a lot views. Very well structured and explained, top notch!
@xc17262 жыл бұрын
i'm korean university student. Despite my poor English, your explanation was very helpful. Thank you !! 👍
@ahmdswerky3 жыл бұрын
Such an awesome/comfortable environment, Hope to see more
@jeremiahakpera34572 жыл бұрын
This is exactly what I was looking for. Thank you
@amazonreviews25243 жыл бұрын
This is amaze-balls! Thank you Leo. You helped me tremendously. :)
@ashishkarki48803 жыл бұрын
greatly technical and useful video. Please keep them coming. thanks a lot
@calculuski2 жыл бұрын
Great video that covered almost what I needed. I would also like you to add API and database feature and testing with jest. Thumbs up Leo..
@leonardparan72913 жыл бұрын
You're one of the best dude, thank you so much
@goshmain9823 жыл бұрын
This is such informative and literary everything I needed.
@mealcode3 жыл бұрын
thanks leo for this gold content. Keep going :)
@utsavojha29533 жыл бұрын
Awesome walkthrough Leo, good stuff! 🚀 subscriber++
@Infinxty__7773 жыл бұрын
Great work waiting for more videos
@nishalgoud2223 жыл бұрын
awesome !.Please keep them coming.
@ThijmenCodes3 жыл бұрын
Great video, you really cover everything from A to Z. Thanks!
@DaumChannelGamePart3 жыл бұрын
wow. this is the best practice ever!
@yashshah76732 жыл бұрын
Too good Leo!! Thank you very much! :-)
@purchtechnologies341410 ай бұрын
This is solid. Thanks
@VINODMAKKENA-e7q6 ай бұрын
This is helpful. Thank you
@jackiedo29593 жыл бұрын
Amazing walk through bro, thumbs up for this!!!! :)
@jeremiahblessing38913 жыл бұрын
13:21 If you are not familiar with Prettier, that's me. LMAO XD
@qianjinqin82933 жыл бұрын
Thank you, Leo.
@mahendranath25043 жыл бұрын
excellent, next time a small suggestion is to increase the font size on VS code editor as its small font hard to focus on your typing , it's a great content 👍
@CodeDunks3 жыл бұрын
Yes I apologize, first video I thought for some reason you guys could see what I could. Won't be happening in my future videos. Thanks for the feedback!
@mahendranath25043 жыл бұрын
@@CodeDunks no need for apologies, it happens, we learn from mistakes,you are doing a great job 👏👍
@coadingwithdharma3 жыл бұрын
NIce work, keep it up bro
@ThangTran-fe5oz3 жыл бұрын
You can help me? import app from '@src/config/express'; Unable to resolve path to module '@src/config/express'
@ВиталийПугач-к8ю Жыл бұрын
awesome!
@miteshsagar81493 жыл бұрын
Awesome 👍😎
@muasx19853 жыл бұрын
NICE! (with the capitals)
@igdev60953 жыл бұрын
Thanks for your video, it's very very helpful for me. But I have a problem, if I delete a file .ts in folder src then ts complier not auto remove it in folder dist. How can I fix that? Thank u so much!
@CodeDunks3 жыл бұрын
Just to be sure I understand here, you want the associated deleted file not to be in the dist folder after deleting its source file automatically? Or After you run the build again? Automatically you could maybe look into www.npmjs.com/package/gulp. If build isn't removing them then I would try making your build script something like "build": "rm -rf dist && tsc"
@marioibarra6683 жыл бұрын
Leo thanks for a great tutorial. It helps me a lot to understand the set-up. Just one small comment: you need to zoom out. Difficult to see what the names of the files. Thanks again.
@ММ-ж2з3 жыл бұрын
great job
@kadeinvictus17593 жыл бұрын
34:23 start: prod uses the "ts-node" and "tsconfig-paths" modules, so in a production environment these modules must be in production dependencies and not in development, right ?
@CodeDunks3 жыл бұрын
ts-node and tsconfig-paths shouldn't be production dependencies. If you look at their docs they install them as dev dependencies. You are correct however if you were to try and take this exact project and run it in production and want to use the yarn start as I have configured. The reason for including those in the start was to fix the MODULE_NOT_FOUND issues for local development when trying to run the yarn start but you are right that it isn't necessarily optimized for production. You can look into this article to possibly improve the project from what I have wrote. bgxcode.com/posts/typescript/ts-absolute-import-paths/
@kadeinvictus17593 жыл бұрын
@@CodeDunks thank you, I understood and I was able to implement the second method
@kodingmania17873 жыл бұрын
Thank you a lot ,, you are helpfully
@CodeDunks3 жыл бұрын
Glad I could help!
@kolynzb2 жыл бұрын
Thanks bro
@scotty87893 жыл бұрын
Great video! Learned a lot. Couple things not working for me though. Initially, the auto formatting wasnt working but I was able to fix it by setting prettier as my formatter and enabling format on save within the vscode settings. This seemed to work but when adding dotenv-safe I noticed it would not automatically move the import statement above my add function import. Any ideas why this could be? I followed all your steps exactly except for using npm instead of yarn and using json instead of js for eslintrc
@scotty87893 жыл бұрын
Disabling prettier in vscode as a formatter and enabling eslint as default formatter seems to have fixed it. My code will autoformat with eslint and prettier settings on save. Is this the correct way to set these extensions in my vscode settings?
@CodeDunks3 жыл бұрын
@@scotty8789 Hey Scott, so there are a couple of ways to mess with your vscode settings. Either how you did it, or you can play around with the settings.json file, you can find this file by doing CTRL + SHIFT + P and typing in settings, then choose open settings (JSON). Here is a link to my vscode settings I just added it up to by blog-tube repo github.com/leoroese/blog-tube/blob/main/settings.json Hope this helps
@scotty87893 жыл бұрын
@@CodeDunks Thank you!
@MrYassineSalhi3 жыл бұрын
How would you add react to this? Every time I try their seems to be clashes
@CodeDunks3 жыл бұрын
Hmm this video was mostly focused for backend project setup while React is mostly for frontend.
@Confusedcapybara87722 жыл бұрын
leo, can you share your bashrc? How did you get the git branch names?
@michrisoft2 жыл бұрын
Pretty sure that's just from using the git bash shell
@christofernguyen62823 жыл бұрын
Hi, How did you setup the nvm on windows? Great video btw!
@CodeDunks3 жыл бұрын
github.com/coreybutler/nvm-windows
@shiroclown61313 жыл бұрын
Appreciate this but 720p is just not clear enough. Maybe increase the fonts size?
@dungam9402 Жыл бұрын
only one thing to complain please zoom the screen bigger :'(
@fooked12 жыл бұрын
Thanks for the video. I noticed you added tsconfig-paths, but I don't think you covered what it does or how to use it. Can you describe what value it brings into the configs you setup?
@KunalMukherjee37012 жыл бұрын
Record in 1080p
@talhaklaib40163 жыл бұрын
awesome, but please zoom in your screen a little bet
@y_thedreamer953 жыл бұрын
Didn't like the quality at 720p but there is no more videos about it so thanks anyway.
@sumitmajumder80032 жыл бұрын
fully rubish. code size is very littlebit. I don't see proper code
@CURIOSITYcapital Жыл бұрын
Ohhh shit windows. I can't code on windows too hard. Cmd is a crap. Linux is just better in my opinion