Nestjs Full Course 2022 | Beginner Nestjs Tutorial

  Рет қаралды 89,222

Bitfumes

Bitfumes

Күн бұрын

Пікірлер: 199
@Easyman01
@Easyman01 2 жыл бұрын
This cause is too good to be free. Honestly speaking, I have watched some causes on KZbin and after 30 minutes of 2 hrs course, I start searching for another one. But I went through your course in one sitting and now I am on 02:10 hrs and hoping there would be a continuation. I just love your sense of humor, the passion you have for nestjs, and your energy you put in this course. Thank you very much. I just can not thank you enough for this course.
@Bitfumes
@Bitfumes 2 жыл бұрын
Thank you sooo much brother Really this is the earning from youtube I get, the comments like this gives me energy to create more quality content
@Easyman01
@Easyman01 2 жыл бұрын
@@Bitfumes I was trying to extend your course by creating a product functionality but ran into this issue of typORM 0.3+ version where EntityRepository decorator is deprecated and I just can't find a way around it. @EntityRepository(Product) export class ProductRepository extends Repository {}
@Easyman01
@Easyman01 2 жыл бұрын
Nest can't resolve dependencies of the ProductService (?). Please make sure that the argument ProductRepository at index [0] is available in the ProductModule context. Potential solutions: - If ProductRepository is a provider, is it part of the current ProductModule? - If ProductRepository is exported from a separate @Module, is that module imported within ProductModule? @Module({ imports: [ /* the Module containing ProductRepository */ ] })
@licokr
@licokr 2 жыл бұрын
You're so patient! you showed everything I wanted to know as a beginner of nestjs! Thank you very much! This is great!
@Bitfumes
@Bitfumes 2 жыл бұрын
Thanks for watching, please subscribe and like this video
@عبدالقادرعبدالرحمنعبدالله
@عبدالقادرعبدالرحمنعبدالله 2 жыл бұрын
@@Bitfumes already subscribed.
@yoskokleng3658
@yoskokleng3658 Жыл бұрын
"Indian teachers are truly incredible! Their expertise in technology is awe-inspiring, and they possess a unique talent for sharing knowledge without revealing any confidential information. I am deeply grateful for their kindness and generosity in educating everyone on platforms like KZbin. Thank you for your invaluable contributions!" 😊
@Bitfumes
@Bitfumes 5 ай бұрын
thanks sir for these nice words I just share what I know stay connected Join bitfumes newsletter bitfumes.com/newsletters
@CamiloMazorra
@CamiloMazorra Жыл бұрын
Keep the good work! As a beginner in the web development field I've found this video quite instructive, simple and well explained. Thanks for taking the time and patience.
@milanthakur4975
@milanthakur4975 Жыл бұрын
Thank you so much, I have understood nest js fundamentals. It is going to help me in my next project. ❤
@Bitfumes
@Bitfumes Жыл бұрын
thanks bro, you are awesome if you like this, consider subscribing to bitfumes newsletter too bitfumes.com/newsletter
@taimoorfarid9931
@taimoorfarid9931 4 ай бұрын
Being an angular developer, watching this nestjs crash course is soo fun, Literally loved this course. It taught me everything i needed to get started with nest js. THANKS ALOT!
@ivo9563
@ivo9563 2 жыл бұрын
2:29:00 Why "@Request() req:any" instead of "@Req() req: Request" in login function (import {Request} from 'express')? Very good course for beginners! Thank you!
@almujabsidik3200
@almujabsidik3200 Жыл бұрын
Wow , Thank you, I learn a lot from your channel🔥
@Bitfumes
@Bitfumes Жыл бұрын
Happy to hear that!
@UltraMegaXL
@UltraMegaXL Жыл бұрын
this is an amazing and thorough tutorial. great worth every 2.5 hours
@Bitfumes
@Bitfumes Жыл бұрын
Thanks for your love and support, keep learning. Join bitfumes telegram group t.me/bitfumes
@salmanahmedkhan3979
@salmanahmedkhan3979 2 жыл бұрын
Your way of teaching is majestic. One day you will soon hit millions subscribers. Thank you for making such a great content with great explanation. Love from Pakistan
@Bitfumes
@Bitfumes 2 жыл бұрын
Waoo, your comment makes me happy Thanks for all your support bro, keep learning
@naimurhasanrwd
@naimurhasanrwd Жыл бұрын
Total Solution! Awesome video.
@Bitfumes
@Bitfumes Жыл бұрын
Glad you think so!
@hammadalam2709
@hammadalam2709 6 ай бұрын
Great tutorial easy to understand found this most clear among other tutorials on yt
@subashc6493
@subashc6493 2 жыл бұрын
It would be great if we have a deployment section on this Tutorial :)
@asit3061
@asit3061 2 жыл бұрын
Deployment is not part of next js is devops
@rizekishimaro
@rizekishimaro 11 ай бұрын
Thanks for teaching me how to read documentation and fundamental of nestjs now i got job as junior developer.Thank you Bitfumes.
@NikunjSondagar
@NikunjSondagar 2 жыл бұрын
Nice point to point explanation, i cleared some new concepts of nestjs, Thanks sarthak😄
@kolynzb
@kolynzb Жыл бұрын
Thank you , This the best nest js tutorial yet
@kumailn7662
@kumailn7662 2 жыл бұрын
Man I want to solute you for so easy on explaining every concept ...
@dharyelsantoshonorio5890
@dharyelsantoshonorio5890 Жыл бұрын
Thank you so much, bitfumes. This course is amazing. You are a great teacher!
@inzodialo
@inzodialo 2 жыл бұрын
Thanks a lot, this is my entry point to start learning nest
@anhxtanh5586
@anhxtanh5586 6 ай бұрын
Summary 00:00:01 - Course Introduction 📘 The video introduces the comprehensive tutorial on NestJS, covering basics, MySQL connection, authentication with Passport and JWT, and hands-on project creation. 00:02:42 - Introduction to NestJS 🚀 Explanation of NestJS as a progressive Node.js framework for building efficient, scalable server-side applications with full TypeScript support. 00:08:49 - Project Setup with Nest CLI 🛠 Demonstrates creating a new NestJS project using Nest CLI, organizing the directory structure, and initializing the project. 00:12:13 - Features of NestJS 🔧 Explores NestJS features like TypeScript, CLI productivity, module integration (GraphQL, WebSockets), and unit testing. 00:19:43 - Core Components: Modules, Controllers, and Providers 📂 Detailed explanation of creating and using modules, controllers, and providers in a NestJS application for effective organization and management. 00:33:04 - Dependency Injection 💾 Discusses the importance of dependency injection in NestJS, simplifying dependency management and enhancing scalability and maintainability. 00:57:06 - Unit Testing with Jest 🧪 Introduces unit testing in NestJS using Jest framework, demonstrating how to write and run tests for controllers and services. 01:01:36 - Connecting to MySQL with TypeORM 📊 Guides on setting up MySQL database, creating entities, and using TypeORM for performing CRUD operations. 01:47:01 - Authentication with Passport and JWT 🔒 Covers setting up authentication routes, handling login, and securing routes using JWT tokens, ensuring secure access control. 02:05:57 - Wrapping Up 🎓 Summary of the course content, emphasizing the importance of the discussed topics, and encouraging viewers to practice and implement NestJS in their projects.
@Bitfumes
@Bitfumes 6 ай бұрын
Thanks for the breakup
@manee427
@manee427 2 жыл бұрын
Amazing, finally learned Nest Js. Perfect and Thanks
@amanmishra5409
@amanmishra5409 2 жыл бұрын
hardwork sir 💪💪
@cuffeemia2108
@cuffeemia2108 Жыл бұрын
Thank you my friend, you are a very good teacher!
@GGSoft2009
@GGSoft2009 Жыл бұрын
I agree 100%
@GGSoft2009
@GGSoft2009 Жыл бұрын
Thanks a lot, I searching for this topic a long time!!!
@nandomkumchi4377
@nandomkumchi4377 Жыл бұрын
Thank you so much for the video.. I had never done nest js before but this video is good and I recommend it
@blueskyzhy
@blueskyzhy 2 жыл бұрын
very clear explanations, thank you
@东风西渐
@东风西渐 Жыл бұрын
Very easy to understand. Thanks.
@Bitfumes
@Bitfumes Жыл бұрын
Thanks for your love and support, keep learning. Join bitfumes telegram group t.me/bitfumes
@anasisah2384
@anasisah2384 2 жыл бұрын
Wow that`s so good. I`m so boring with other lecture but this one clear all the boring i had before
@Bitfumes
@Bitfumes 2 жыл бұрын
glad that you liked it
@anasisah2384
@anasisah2384 2 жыл бұрын
@@Bitfumes The only problem I get is (secretOrPrivateKey must have a value) I try to resolve the error but I could not. Please any help
@GetInspiredWithTech
@GetInspiredWithTech Жыл бұрын
Thanks!
@Bitfumes
@Bitfumes Жыл бұрын
thanks bro
@karthikhkamath
@karthikhkamath 9 ай бұрын
Perfect on point video !
@Bitfumes
@Bitfumes 9 ай бұрын
Glad you think so!
@esosaekuobase4753
@esosaekuobase4753 2 жыл бұрын
Thanks for this course
@mdsayem8893
@mdsayem8893 4 ай бұрын
Just awesome 🎉🎉🎉
@kashifniaz4627
@kashifniaz4627 2 жыл бұрын
finally... i have created a basic nestjs application followed by your this video. thanks for this video. 💌
@baba_yaga9
@baba_yaga9 2 жыл бұрын
Awesome content! You've earned a sub today bhai...
@Bitfumes
@Bitfumes 2 жыл бұрын
Thanks and welcome Please share with your friends
@baba_yaga9
@baba_yaga9 2 жыл бұрын
@@Bitfumes sure will do! Also if there’s any reference/video link where Mongodb is used instead of sql based db, that would be really helpful.
@haifalemontrees
@haifalemontrees Жыл бұрын
thank you for this amazing course
@zahidshaikh3122
@zahidshaikh3122 Жыл бұрын
Bitfumes is the only place where you'll learn a Technology even if you're absolute beginner. Highly Recommended!!!
@muboshermuydinov9632
@muboshermuydinov9632 2 жыл бұрын
Thankyou for creative course
@MohidulIslam-el8fd
@MohidulIslam-el8fd 2 жыл бұрын
Thanks for easy explanation
@Bitfumes
@Bitfumes 2 жыл бұрын
You are welcome Thanks for watching, please subscribe and like this video
@MohidulIslam-el8fd
@MohidulIslam-el8fd 2 жыл бұрын
Already subscribed
@ohradiatelove
@ohradiatelove 2 жыл бұрын
thanks, downloaded, all works!
@Bitfumes
@Bitfumes 2 жыл бұрын
Enjoy Thanks for watching, please subscribe and like this video
@trendsnow5189
@trendsnow5189 Жыл бұрын
very informative, thanks😍
@raimundoneto4557
@raimundoneto4557 2 жыл бұрын
assistindo aqui do Brasil, parabpens pelo trabalho.
@saimi03
@saimi03 2 жыл бұрын
Great explanation!
@lukramingo1496
@lukramingo1496 Жыл бұрын
great tutorial with documentation
@KailashKumar-pn5ew
@KailashKumar-pn5ew 7 ай бұрын
Thanks for this great and informative video...
@TheCocuba
@TheCocuba Жыл бұрын
nice video, well explained
@harshawevmotech
@harshawevmotech Жыл бұрын
Thanks for your amazing work
@عبدالقادرعبدالرحمنعبدالله
@عبدالقادرعبدالرحمنعبدالله 2 жыл бұрын
very helpful. thanks for sharing
@Bitfumes
@Bitfumes 2 жыл бұрын
Glad it was helpful!
@kumailn7662
@kumailn7662 2 жыл бұрын
very interactive tutorial!!
@alexcodedominican
@alexcodedominican 10 ай бұрын
Excelent video, the best
@k.ksharma4457
@k.ksharma4457 2 жыл бұрын
awesome explanation ever👌👌👌
@tsrcodes
@tsrcodes 2 жыл бұрын
Awesome 😍
@Bitfumes
@Bitfumes 2 жыл бұрын
Thank you! Cheers! Please like this video and subscribe to bitfumes if you haven't
@skyvane8
@skyvane8 Жыл бұрын
Awesome! Thanks
@thanakronjantara6421
@thanakronjantara6421 Жыл бұрын
amzing course sir
@kashifniaz4627
@kashifniaz4627 2 жыл бұрын
hi, i am following your tutorial on Nestjs framework. at @2:22:49 you have implemented passport authentication strategy 'local' but i am facing issue at this point. can you help me please. console error below: Error: Unknown authentication strategy "local". rest of the tutorial is fantastic and specially not boring (dull). thanks in advance.
@carlosrema21
@carlosrema21 2 жыл бұрын
Great course! Can we connect this as the back end of the Angular Books app? Would you do it please? Thank you!
@Bitfumes
@Bitfumes 2 жыл бұрын
Not exactly with Book app of angular course But I will create angular + nestjs course for sure
@carlosrema21
@carlosrema21 2 жыл бұрын
@@Bitfumes I am really excited for this. Thank you!
@izuchukwusamson3150
@izuchukwusamson3150 2 жыл бұрын
Hi bitfumes, thanks for the awesome tutorial It really made me understand nestjs Please you can also post a tutorial on authorization for admin and normal users Thanks a lot
@Airjaman
@Airjaman Жыл бұрын
Thank you!
@mansourlotfim
@mansourlotfim 2 жыл бұрын
thank you , it was great
@Bitfumes
@Bitfumes 2 жыл бұрын
You are welcome!
@innocentmazando3808
@innocentmazando3808 2 жыл бұрын
Always explaining concepts so good. Thanks @Sarthak
@taharchibane5762
@taharchibane5762 2 жыл бұрын
Awesome ! What is your extension that show you 'Cannot found module' please ?😃
@Bitfumes
@Bitfumes 2 жыл бұрын
error lens extension on vscode
@emadzaheer
@emadzaheer Жыл бұрын
While following this tutorial, make sure to comment the routes defined earlier in the root controller or they can cause conflict with the user routes without giving an error.
@mdalmamunmim8062
@mdalmamunmim8062 2 жыл бұрын
I love this❤️ please make videos on nextJs
@Bitfumes
@Bitfumes 2 жыл бұрын
Yes sure, I will do that Thanks for watching, please subscribe and like this video
@gonzaloquispehuanca476
@gonzaloquispehuanca476 2 жыл бұрын
great video!
@iradukundayves2446
@iradukundayves2446 2 ай бұрын
nice one for beginners
@letslearntogether2481
@letslearntogether2481 2 жыл бұрын
Hi, this course is awesome. It is having everything to start CRUD and user authentication. BTW, what is the extension you are using for auto suggestion in vscode?
@rupeshkarale3492
@rupeshkarale3492 2 жыл бұрын
really good explanation😇
@gigakvachakhia4777
@gigakvachakhia4777 2 жыл бұрын
how to run migrations? i could not figure it out. works only with autoloading entities
@tejass817
@tejass817 2 жыл бұрын
Great content
@Bitfumes
@Bitfumes 2 жыл бұрын
thanks Tejas :) Thanks for watching, please subscribe and like this video
@LeeanRepzTraining
@LeeanRepzTraining 11 ай бұрын
what if you utilize bcrypt to hash the pass word.. how can passport validation be used?
@sirojulanam7278
@sirojulanam7278 2 жыл бұрын
please make video about custom validation and interceptor, Sir
@ostryFAN
@ostryFAN 2 жыл бұрын
good job 👏
@guptaji0786
@guptaji0786 2 жыл бұрын
Django Restful Framework, Tailwind CSS and Next.JS
@anasisah2384
@anasisah2384 2 жыл бұрын
Please we need the continuetion of the lecture
@coodementor6826
@coodementor6826 2 жыл бұрын
Can you make complete course nest js with typeorm with postgresql?
@Bitfumes
@Bitfumes 2 жыл бұрын
Will try that too, but it is not that difficult just use postgresql instead of mysql
@An_Urban_monk
@An_Urban_monk 2 жыл бұрын
How come. you never had to do CREATE TABLE with your schema? Does typeORM handle schema migration as well?
@teknolovedigital
@teknolovedigital 2 жыл бұрын
if sync true, then it will automatic created. so dont set to true if you are on production.
@limonfwt
@limonfwt 2 жыл бұрын
I really love your videos. Would you make a video on Bun (JS Runtime)
@muhammedrashidp
@muhammedrashidp Жыл бұрын
how can we do roles and permission using nestjs
@motiurrahman3023
@motiurrahman3023 Жыл бұрын
Really nice
@AmaroAmaral
@AmaroAmaral 2 жыл бұрын
Hi as a long follower of your channel, Thank you for all your hard work. Question: Laravel or NestJs for backend ?
@flogginga_dead_horse4022
@flogginga_dead_horse4022 2 жыл бұрын
nest
@Bitfumes
@Bitfumes 2 жыл бұрын
The one you know better No framework is good or bad, it is like what language you have master
@AmaroAmaral
@AmaroAmaral 2 жыл бұрын
@@Bitfumes no doubt about that! I am used to laravel (queues, crons jobs, echo) can we get all of that on nest! That was my point of view!
@AmaroAmaral
@AmaroAmaral 2 жыл бұрын
@@flogginga_dead_horse4022 n your experience whats the advantages? that what I am trying to get! Example I prefer Angular over reactjs, to mess less with "external" packages/components,
@flogginga_dead_horse4022
@flogginga_dead_horse4022 2 жыл бұрын
@@AmaroAmaral it uses typescript so the language is very similar to writing angular on the front end. Then you aren't writing php for one part and typescript for the other. Also Laravel is one of the slowest frameworks. Some will say this isn't important but why start with something slow when you can have something faster. There are other things but it's late here lol
@bilalrabbi6401
@bilalrabbi6401 2 жыл бұрын
Fantastic teacher. Love you sartik bhaye. Any plans for Appolo prisma or graphql. it would be fantastic. There are no tutorials on this topic which covers it
@imakhlaqXD
@imakhlaqXD Жыл бұрын
I don't know why but its hard for me to wrap my head around modules. Can someone provide me resource to understand.
@trongphuctongnguyen2013
@trongphuctongnguyen2013 2 жыл бұрын
Can you tell me what extension you are using?
@marisettibabji2012
@marisettibabji2012 Жыл бұрын
hi Bitfumes, your explain very good, this video is very help full for me, could you plz make a vedio on full API mean while making API we are using mapper becouse we are using multiple functions in a single api that time how we can handle the response
@milanthakur4975
@milanthakur4975 Жыл бұрын
I was watching freecodecamp's nest js video and accidentally clicked on next button, and stayed untill the end.
@Bitfumes
@Bitfumes Жыл бұрын
Waoo thats really a big compliment, thanks thanks a lot
@Easyman01
@Easyman01 2 жыл бұрын
Not sure if anyone having this issue where mysql workbench erases name and email except the id's from the user table after vs code restart. Basically, when I run a GET request for all users, I get all users object with uniq id's but name and email returns as an empty string.
@Easyman01
@Easyman01 2 жыл бұрын
This issue is fixed. It was caused by "synchronize: true" that was set in app.module.ts Setting that property to false "synchronize: false" retains my record in db.
@loganwells6082
@loganwells6082 2 жыл бұрын
Hands down, tNice tutorials is THE best beginner
@UsmanArain
@UsmanArain Жыл бұрын
after get token from login api , profile module work properly as you mentioned in tut , I want access of users/profile, method that i made inside UserModule but I can't get , I'm facing an issue of where clause error nan etc. ? how can I do that ?
@atabiti_1337
@atabiti_1337 Жыл бұрын
thank you sir
@kuku687
@kuku687 Жыл бұрын
Nice explain
@MUAHAMMADFAISALJAVED
@MUAHAMMADFAISALJAVED Жыл бұрын
Good job
@bhargavas3846
@bhargavas3846 11 ай бұрын
Hi Sarthak Is it possibie to add RuPay Debit card type, to join.
@Bitfumes
@Bitfumes 11 ай бұрын
Hey I don't know what youtube support
@UltraMegaXL
@UltraMegaXL Жыл бұрын
Does this allow serverside rendering?
@PhoCho-wf8mj
@PhoCho-wf8mj Ай бұрын
This code based not work while using with nestjs v10.
@elgrego3849
@elgrego3849 Жыл бұрын
i love you man
@darkroad4672
@darkroad4672 2 жыл бұрын
Thank you very much
@Bitfumes
@Bitfumes 2 жыл бұрын
You are welcome
@samaygoel707
@samaygoel707 2 жыл бұрын
Too good
@Bitfumes
@Bitfumes 2 жыл бұрын
Thanks for your comment bro, keep learning Any suggestion from your side for next course ??
@samaygoel707
@samaygoel707 2 жыл бұрын
@@Bitfumes could you please teach testing in Nest JS? Unit testing, specifically. Can't find good vids online for the same...
@wasimkabir4398
@wasimkabir4398 2 жыл бұрын
What font are you using in VS Code?
@Bitfumes
@Bitfumes 2 жыл бұрын
fira code
@saiprasadsaiprasad
@saiprasadsaiprasad 2 жыл бұрын
Picture quality 360 px even trying to select more picture quality. Not able to view
@Bitfumes
@Bitfumes 2 жыл бұрын
Hey, youtube is rendering HD version, will be available soon
@mahdisalmanizadehgan6838
@mahdisalmanizadehgan6838 2 жыл бұрын
Great
@juancasas5532
@juancasas5532 2 жыл бұрын
if u run for president, u have my vote!
NestJs Course for Beginners - Create a REST API
3:42:09
freeCodeCamp.org
Рет қаралды 1,7 МЛН
🎈🎈🎈😲 #tiktok #shorts
0:28
Byungari 병아리언니
Рет қаралды 4,5 МЛН
КОНЦЕРТЫ:  2 сезон | 1 выпуск | Камызяки
46:36
ТНТ Смотри еще!
Рет қаралды 3,7 МЛН
Angular 14 full course 2022 for beginner
3:54:25
Bitfumes
Рет қаралды 285 М.
Complete Kubernetes Course - From BEGINNER to PRO
6:14:41
DevOps Directive
Рет қаралды 158 М.
NestJS Tutorial For Beginners - Learn NestJS
51:49
PedroTech
Рет қаралды 17 М.
NestJS gRPC Microservices Tutorial
55:04
Michael Guay
Рет қаралды 42 М.
All in One NextJS And NestJS Full Authentication Monorepo Project
4:15:58
NestJS Crash Course - Build a Complete Backend API
3:21:59
Laith Academy
Рет қаралды 48 М.
Learn Nest.js from Scratch by building an API
1:09:06
Academind
Рет қаралды 547 М.
NestJS with MongoDB & Mongoose - FULL BEGINNER TUTORIAL
1:58:53
Anson the Developer
Рет қаралды 38 М.
3 Years Experienced React Interview
1:16:16
ProCodrr
Рет қаралды 108 М.
NestJS Crash Course: Everything you need to know! | NodeJS Tutorial 2023
1:05:23
🎈🎈🎈😲 #tiktok #shorts
0:28
Byungari 병아리언니
Рет қаралды 4,5 МЛН