Build Nest.js Microservices With RabbitMQ, MongoDB & Docker | Tutorial

  Рет қаралды 120,784

Michael Guay

Michael Guay

Күн бұрын

Пікірлер: 202
@renends7615
@renends7615 2 жыл бұрын
This content is unique, it helps us understand, something very complicated into something simple. Great tutorial!
@zlatkoiliev8927
@zlatkoiliev8927 11 ай бұрын
I got issues with MongooseModule, it says it can’t connect to mongodb-primary 😢
@MrOrrGoren
@MrOrrGoren 2 жыл бұрын
Thank you so much for the great tutorial! Just a heads up for anyone using Macbook M1 with the ARM64 chip, Bitnami doesn't support it yet.
@felipechavesdeoliveira4785
@felipechavesdeoliveira4785 Жыл бұрын
Yeah ;(
@jafar1607
@jafar1607 2 жыл бұрын
Wow. This dude is just giving away thousands of dollars worth education for free. Salute to you sir. You are helping many. I wish all the success in your career.
@mguay
@mguay Жыл бұрын
Get my highly rated NestJS Microservices Course at a discount: michaelguay.dev/udemy
@mohammadrendra2062
@mohammadrendra2062 Жыл бұрын
For those who's having these problems: 1. Python not found when running docker-compose (and you tried npm config set yet failed, nogde-gyp configure yet failed): Try replacing bcrypt with bcryptjs 2. Error when connecting to database (if you're using Apple Silicon): Try changing the mongo image to: mongo:4.4.14. And if that doesn't work, try add these envs: - to your secondary and arbiter services on your docker-compose.yml: MONGODB_INITIAL_PRIMARY_ROOT_USERNAME=root - to your mongodb-primary: MONGO_INITDB_ROOT_USERNAME=root replace the MONGODB_ROOT_PASSWORD=password123 with MONGO_INITDB_ROOT_PASSWORD=password123 Hope this helps
@tomasgonzalez7474
@tomasgonzalez7474 Жыл бұрын
Thank you!
@olajumokeboladale-lawal8688
@olajumokeboladale-lawal8688 Ай бұрын
Thank you!
@VeeWebCode
@VeeWebCode 8 ай бұрын
litterlay a gold mine . nothing else to say 😘😘
@Dhirajkumar-ux5ug
@Dhirajkumar-ux5ug Жыл бұрын
Nice video and great content , Can you make a enterprise level application using NestJS with micro-service architecture in which you cover e2e testing , caching, queue management system etc. which required to make production level application using micro-services architecture.
@ArturDani
@ArturDani 2 жыл бұрын
Wow, this was the missing piece for me to start using microservices pattern. The puzzle is almost completed (just waiting for deployment part) :) Thank you, Sir.
@nestieyt
@nestieyt Жыл бұрын
Hot reload not working on docker-compose with the NestJS 10. I couldn't fix it. Can you help me?
@salaheddineboutayeb3649
@salaheddineboutayeb3649 7 ай бұрын
yes me too still facing same issue😢
@azubikeenu7104
@azubikeenu7104 Жыл бұрын
live reload isn't working on docker windows WSL. I don't know if anyone has a fix ?
@zubairjamil1632
@zubairjamil1632 Жыл бұрын
same issue
@truongkhanguyen6241
@truongkhanguyen6241 Жыл бұрын
same issue. i have search around but still can not solve
@codesuit
@codesuit 2 жыл бұрын
Awesome! Thanks for the great content, waiting for the deployment part!! ♥ Thx Bro.
@tonskreee6213
@tonskreee6213 2 жыл бұрын
Hi Michael, May I know why both on Auth and Billing service you define the app.connectMicroservice functionality but in Order service you didn't define the connectMicroservice instead you call the RmqModule.register which calls the ClientsModule.register, is there a rule for this one? because I thought when we want to define our service as microservice we need to call the connectMicroservice for each services? sorry im new to microservice and nestJS.
@oyinlolaolasunkanmi
@oyinlolaolasunkanmi 2 жыл бұрын
the order service serves as the entry point into the application. Therefore you need to instantiate Rabbit MQ from there.
@andyslack1167
@andyslack1167 Жыл бұрын
Really helped me get up and running quickly with NestJS Microservices and RabbitMQ, thank you! Grab beer or two on me!
@mguay
@mguay Жыл бұрын
Thank you so much!
@cumuluscycles
@cumuluscycles Ай бұрын
Excellent tutorial! This works out-of-the-box from your Repo on a Mac with an Intel Processor, as expected, but I've been trying to update the Images for the Apple M1 ARM64 Arch. Have you tried this as well and, if so, would you mind sharing updated docker-compose / Dockerfile(s)?
@rayantsolefack7068
@rayantsolefack7068 2 жыл бұрын
Hey guys please i have an error. I followed all the steps till 28:02 but i got : | [Nest] 44 - 07/21/2022, 1:41:51 PM ERROR [MongooseModule] Unable to connect to the database. Retrying (1)...
@ezebc182
@ezebc182 2 жыл бұрын
Same here! Does anybody solved it?
@mguay
@mguay 2 жыл бұрын
Do you see Mongo start up properly?
@ezebc182
@ezebc182 2 жыл бұрын
@@mguay first of all, THANKS for this amazing tutorial.! I think the issue is about that the image with replicas set that you use here, is not compatible with Mac M1 still..
@centralperk6291
@centralperk6291 2 жыл бұрын
try to change the mongodb version, it should work fine...
@rufatgulabli698
@rufatgulabli698 Жыл бұрын
This works: MONGO_URI=mongodb://root:password123@localhost:27017/?authMechanism=DEFAULT&directConnection=true
@ikwuegbueugenia638
@ikwuegbueugenia638 4 ай бұрын
Great Piece. Thank you very much for this tutorial I am trying to replicate this in my project and I keep getting this error when I publish messages to the queue Error: Channel closed by server: 406 (PRECONDITION-FAILED) with message "PRECONDITION_FAILED - unknown delivery tag 1" I would really appreciate if you or anyone can assist with a solution. I have tried every resource I have come across and nothing seems to be helping
@pawarbhushan13
@pawarbhushan13 10 ай бұрын
Hi @Michael, not able to create common library, getting error nest g library common Error: Schematic input does not validate against the Schema: {"name":"common","path":"app","skipImport":false,"language":"ts","sourceRoot":"apps/orders/src","spec":true,"flat":false,"specFileSuffix":"spec"} Errors: Data path "" must have required property 'prefix'. Failed to execute command: node @nestjs/schematics:library --name=common --path=app --no-dry-run --no-skip-import --language="ts" --source-root="apps/orders/src" --spec --no-flat --spec-file-suffix="spec"
@АлександрЕлагин-м2ю
@АлександрЕлагин-м2ю 2 жыл бұрын
Very cool 👍 graphql federation with microservices maybe in future ?
@patrykkowalski1305
@patrykkowalski1305 2 жыл бұрын
Hello, two questions: Why billing service doesn't have a port defined? Shouldn't we have a separate database for each service?
@MenottiRicardo
@MenottiRicardo 2 жыл бұрын
I wonder the same
@theaungmyatmoe
@theaungmyatmoe Жыл бұрын
you don't need to define port in billing app because the app is not listen on the http or tcp. It''s listening to the Rmq
@girish_rajpoot
@girish_rajpoot 4 ай бұрын
I got issues with MongooseModule, it says it can’t connect to mongodb-primary. Please resolve. @Michael
@LelekCZE
@LelekCZE 2 жыл бұрын
Hey Michael, thanks for the tutorial, super educative! Do you plan to do a tutorial for authorization in NestJS?
@mguay
@mguay 2 жыл бұрын
Thanks! I have a video on this, check out my channel.
@chinmayanand896
@chinmayanand896 Жыл бұрын
I am watching you videos and this video specifically it is really great to have such content. Because there is almost no one on the internet who is helping with Microservices with NestJS. Thank you for the content from all of us. I am sure many people will take help from this video.
@christopherkiessling
@christopherkiessling 7 ай бұрын
Amazing! Just a quick feedback please don't say go ahead and... each new sentence, thanks
@onepointproduction9092
@onepointproduction9092 2 жыл бұрын
superb bro...
@10x-dev
@10x-dev 2 жыл бұрын
Mongodb Bitnami will probably not work on M1 Macs
@ezebc182
@ezebc182 2 жыл бұрын
this is my issue!! i'm blocked... Does anybody solved it?
@pt4shk4
@pt4shk4 7 ай бұрын
I'm wondering if there or anywhere else a tutorial for doing database stuff like in this video but with typeorm and rdb?
@PrashilLonakar
@PrashilLonakar 2 ай бұрын
Really Appreciated , thanks for this great tuts. helps a lot.
@progressnwimuelekara2167
@progressnwimuelekara2167 Ай бұрын
This is awesome, man. Has been very helpful to me
@muhammadarsalan5109
@muhammadarsalan5109 2 жыл бұрын
Every thing works fine but Nestjs hot reloading is not working on docker-compose up. I am using windows OS.
@regedam7559
@regedam7559 Жыл бұрын
have you found a solution?
@murat.terzioglu
@murat.terzioglu Жыл бұрын
Wonderful video mate! Helped a lot to understand the system and I would like to give a feedback. Can you make commits as you make progress? For example we have "docker", "microservices" and "billing app" chapters on youtube, wouldn't be good if you make commits for each youtube chapter?
@jheremiaspulache6836
@jheremiaspulache6836 2 жыл бұрын
Great tutorial, thanks. Why using MessagePattern and switch to rpc? In Auth microservice the rmq auth queue is connected, isn't that mean that we can use EventPattern in auth controller?
@namibiacodegeek
@namibiacodegeek Жыл бұрын
=> ERROR [development 4/6] RUN npm install ,#0 59.41 npm ERR! code 126 #0 59.41 npm ERR! path /usr/src/app/node_modules/bcrypt #0 59.42 npm ERR! command failed , Micheal can you help?
@ImBlackj4ck
@ImBlackj4ck 10 ай бұрын
I removed bcrypt from the project and used native nodejs crypto library.
@misbauddinchowdhury2180
@misbauddinchowdhury2180 11 ай бұрын
Why I can't connect mongodb replicaset in my Macbook M1. Error throwing like this [Nest] 69 - 10/24/2023, 10:35:24 AM ERROR [MongooseModule] Unable to connect to the database. Retrying (1)...
@codinghubfree
@codinghubfree 6 ай бұрын
The way you explained is really awesome and helpfull. I have some confusions : Why do we need to create two JwtAuthGuard and how you are deciding where to use JwtAuthGuard and flow of its execution?
@GiorgiGvimradze1
@GiorgiGvimradze1 Жыл бұрын
Maybe someone had this issue: 28:30 npm ERR! path /usr/src/app appears right after I restart the container. And I need to restart it because, even though I followed this tutorial 3 separate days from the beginning, the docker is not restarting when I make updates and click save.
@GiorgiGvimradze1
@GiorgiGvimradze1 Жыл бұрын
It was because docker can't run it WSL 2
@cosmic12333
@cosmic12333 4 ай бұрын
thanks so much for this video, i love it
@huutinnguyen3075
@huutinnguyen3075 Жыл бұрын
you can tutorial this set up env and run it in computer
@jonesPossibly
@jonesPossibly Жыл бұрын
I'm getting an error in my abstract.repository.ts: Type 'TDocument extends any[] ? Require_id[] : Require_id' is not assignable to type 'TDocument'. 'TDocument extends any[] ? Require_id[] : Require_id' is assignable to the constraint of type 'TDocument', but 'TDocument' could be instantiated with a different subtype of constraint 'AbstractDocument'. Type 'Require_id[] | Require_id' is not assignable to type 'TDocument'. 'TDocument' could be instantiated with an arbitrary type which could be unrelated to 'Require_id[] | Require_id'.ts(2322) Anyone any ideas on how to fix that?
@teninin
@teninin Жыл бұрын
i had this error as well i i fixed it replacing the findone() function in the file abstract.repository.ts with this one: async findOne(filterQuery: FilterQuery): Promise { const document = await this.model.findOne(filterQuery, {}, { lean: true }); if (!document) { this.logger.warn('Document not found with filterQuery', filterQuery); return null; // Return null when no document is found } return document as TDocument; }
@illianykonchuk7302
@illianykonchuk7302 10 ай бұрын
return document as TDocument
@g-luu
@g-luu 2 жыл бұрын
Best nestjs channel out there.
@franccescomichaeljaimesagr7162
@franccescomichaeljaimesagr7162 Жыл бұрын
That was a really good content! One question, if my monorepos had different dependencies, do I necessarily have to create a package.json file in each microservice and have the node_modules folder in each microservice? Could I have common dependencies and also specific dependencies at the same time? Sorry for the questions. I hope you can understand my questions. My native language is spanish 😅. Greetings from Peru.
@mguay
@mguay Жыл бұрын
This is a great question. You could make the individual approach with each service having its own package.json/node_modules, or you have a shared one like in my video. I am not sure if it is possible to have shared/individual at the same time but I would be curious to learn!
@milon27
@milon27 Жыл бұрын
@@mguay can you share any resources link how to setup individual package.json in each micro service?
@aminahammadi4675
@aminahammadi4675 Жыл бұрын
Hello I have this problem when running docker-compose up --build -V Any fix ? ERROR in main #0 11.54 Module not found: Error: Can't resolve '/usr/src/app/apps/orders/apps/ordering-app/src/main.ts' in '/usr/src/app' #0 11.54 resolve '/usr/src/app/apps/orders/apps/ordering-app/src/main.ts' in '/usr/src/app' #0 11.54 using description file: /usr/src/app/package.json (relative path: .) #0 11.54 root path /usr/src/app #0 11.54 using description file: /usr/src/app/package.json (relative path: ./usr/src/app/apps/orders/apps/ordering-app/src/main.ts) #0 11.54 no extension #0 11.54 /usr/src/app/usr/src/app/apps/orders/apps/ordering-app/src/main.ts doesn't exist #0 11.54 .tsx #0 11.54 /usr/src/app/usr/src/app/apps/orders/apps/ordering-app/src/main.ts.tsx doesn't exist #0 11.54 .ts #0 11.54 /usr/src/app/usr/src/app/apps/orders/apps/ordering-app/src/main.ts.ts doesn't exist .js H:\web eact\ordering-app\apps\orders\apps\ordering-app\src\main.ts.js doesn't exist as directory H:\web eact\ordering-app\apps\orders\apps\ordering-app\src\main.ts doesn't exist
@ElyesBoudhina
@ElyesBoudhina 6 ай бұрын
Did you create an APi gateway?
@pramodkharade5373
@pramodkharade5373 2 жыл бұрын
It was an excellent explanation. Ton of things, we can learn. Just waiting for deployment part
@Imen_lakrib
@Imen_lakrib 8 ай бұрын
What about polyrepo .. is it a same way?
@KePaco-mf1bf
@KePaco-mf1bf 9 ай бұрын
Hi Michael, I'm a newbie with NestJS and RabbitMQ, this series is really nice and helps me a lot to understand, thank you! But I got the error when I practiced, I followed the steps that you did and also downloaded your case to references, but I got these errors while I emitted the message. Do you know what's happened? Error: WARN [Server] An unsupported event was received. It has been acknowledged, so it will not be re-delivered. Pattern: notifications
@ezequielgnich
@ezequielgnich 3 ай бұрын
Hello Michael, I would like to thank you very much for this content, it is very rich in detail and helped me a lot to understand a little more about microservices and also monorepo with NestJS. You've gained another subscriber. Congratulations on a job well done.
@brucearmstrong5536
@brucearmstrong5536 Жыл бұрын
Awesome Stuff, I realized that sevices connect to same db, and u have userModule a sub module for parent Auth As Auth is dependent on user and Splitting it into 2 micro services get this tutorial complex Question: is it Good to connect API with mongoDB directly through mongoose for same user collection "mongoose.forfeature({ schema: user, name : user })" instead of, exporting userservice , repository or userSchema and importing the user module in auth module ? Is this a good practice ? adding "mongoose.forfeature({ schema: user, name : user })" for 2 different modules that dependent on same collection I can see some benifits like easier to switch between monolithic / microservices more cleaner and not to much nested file structure Not expert at nest or mongodb
@oigiangbekelvin133
@oigiangbekelvin133 2 жыл бұрын
You're the best. waiting for the deployment part
@nishanthakumara8472
@nishanthakumara8472 2 жыл бұрын
exactly 👍
@MrJony-fv3ev
@MrJony-fv3ev Жыл бұрын
May I ask a question Monorepos can't be deployed seperately, so why is this still considered as microservices? It's more monolithic app structure I guess Thanks!
@zackinfos5933
@zackinfos5933 8 ай бұрын
Thank you sir for everything you're doing for us, but could you please tell me why you have followed the one shared db approach for all microservices you have implemented? The one db per each microservice could be more suitable for microservices architecture.
@kusaasira
@kusaasira Жыл бұрын
Great content. Michael Guay, on the auth service, why is it that instead of validation I do get always a 401 Unauthorized? Is there a way of working around this?
@patrickjoseph5205
@patrickjoseph5205 Жыл бұрын
Hi Michael. I followed through the video however I want to deploy this on a service like Render. Could you help with this?
@programmingdoze7025
@programmingdoze7025 2 жыл бұрын
@michael thanks. Can u throw some light on nestjs with saga topic? I am really confused with saga
@rahff99
@rahff99 2 жыл бұрын
Hi, at 1:11:05 in ordering apps auth section, I don't understood why are you inject(AUTH_SERVICE) constante which is a string value as injector for clientProxy. How works this and in what way does this constant refer to this service ?
@yaiDev
@yaiDev Жыл бұрын
Thank you for great tutorial. But I'm not idea write unit testing for controller and services. I try to write a. unit test but not work because it many dependencies. Please help or guide how write unit test.
@tzion21
@tzion21 Жыл бұрын
​ @Michael Guay hey, do you have any course about nestjs with microservices from scratch? or another option, what is the best approach to learn nest js and microservices? i know express, and i know the concept of microservices, but i did not understand what is nestjs and nestjs microservices . thanks
@rufatgulabli698
@rufatgulabli698 Жыл бұрын
Great tutorial. Thanks, Michael. For those who have a problem related to MongoDB connection, try below string; MONGO_URI=mongodb://root:password123@localhost:27017/?authMechanism=DEFAULT&directConnection=true
@elvoosano4680
@elvoosano4680 Жыл бұрын
Thank you brother
@DakshanshGorasia
@DakshanshGorasia 9 ай бұрын
Thanks for the awesome video Michael. I was wondering how it is possible to connect to 2 databases from one of the microservice and second microservice connects to only second database and both are responsible for read/write operations in that database. I know there can be microservice communication used but if we wan to avoid the delay.
@oyinlolaolasunkanmi
@oyinlolaolasunkanmi 2 жыл бұрын
How does my application consume multiple queues. I saw an approach someone suggested on stackoverflow where you repeat the "app.connectMicroservice" for each queues, is there a cleaner approach ?
@Vahidk2222
@Vahidk2222 4 ай бұрын
Thanks man, it's really comprehensive. I learnt a lot from it
@nithinraj342
@nithinraj342 2 жыл бұрын
Error: for mongodb-primary a bytes-like object is required, not 'str'
@LelekCZE
@LelekCZE 2 жыл бұрын
How would I go about enabling HMR for the individual microservices? I am able to do it for regular NestJS app setup, but with this shared libraries approach, I am not able to figure it out unfortunately.
@MK-we4dl
@MK-we4dl Жыл бұрын
Hi. How to set username and passworf for RabbitMQ in connection options?
@defrankline
@defrankline 2 жыл бұрын
This tutorial makes microservice implementation looks so simple. Thanks coder!
@regedam7559
@regedam7559 Жыл бұрын
Does anybody have problems with hot-reload on Windows?
@totemsports1267
@totemsports1267 2 жыл бұрын
Hi Michael, this is really nice, keep it up and thank you. I was wondering instead of building authentication service from scratch is it possible to integrate keycloak in your setup as well as api gateways like apisix? If you can create a video that incorporates the two, that would be great. Otherwise thank you for such wonderful and educative videos.
@elco7956
@elco7956 8 ай бұрын
Super interesting topics
@hadirahmani7943
@hadirahmani7943 Жыл бұрын
instead of inserting data into database into orders app, when i try to do the same actions into billing no any data saved into database, i tried to save your passed data into billing microservice in database. i get 201 but there isn't any data into database and that return empty
@mohammedlotfy
@mohammedlotfy Жыл бұрын
Nice video Michael but I suggest to use any diagram for more simplification before starting that will make it very easy and will get new ideas from comments sure
@MK-we4dl
@MK-we4dl Жыл бұрын
How in this configuration work whis different queue in one client?
@marc-andrequintal570
@marc-andrequintal570 Жыл бұрын
Really nice, were you able to connect into mongo atlas? I can't and it would be great to see data into database
@regedam7559
@regedam7559 Жыл бұрын
What if we need to use a schema from another microservice? How we can import it?
@christian11x3
@christian11x3 2 жыл бұрын
+1000 loved your content and looking forward for your next video. Thank you and best of luck
@temidayomichael4646
@temidayomichael4646 2 жыл бұрын
How to deploy this micro services application please??
@mguay
@mguay 2 жыл бұрын
Stay tuned for the next video.
@temidayomichael4646
@temidayomichael4646 2 жыл бұрын
Thank you, post notification turned on ✅
@antnzr656
@antnzr656 2 жыл бұрын
Great tutorial, thanks. Why using MessagePattern and switch to rpc? In Auth microservice the rmq auth queue is connected, isn't that mean that we can use EventPattern in auth controller?
@hugotown.entertainment
@hugotown.entertainment Жыл бұрын
This content is amazing, Thank you very much, is the best content ever!
@olaboyeolanrewaju134
@olaboyeolanrewaju134 Жыл бұрын
I cannot find the bitnami mongodb image repo seems it is no longer open sourced?
@aletothemoon
@aletothemoon Жыл бұрын
Hey nice content! Can you share your vscode extensions and theme?
@tristheflash6928
@tristheflash6928 5 ай бұрын
i very love guy :3
@DheerSinghDel
@DheerSinghDel Жыл бұрын
How do we ensure the transaction atomicity in case of any failure, such that the messages are not standing as orphan data in rabbitmq for processing?
@yairlevi8469
@yairlevi8469 Жыл бұрын
What is the difference between service and repository?
@none4614
@none4614 Жыл бұрын
Fantastic video !! Could you make a fullstack microservice project that apply rabitMQ, Kafka, docker, k8s, ... Thanks so much.
@mguay
@mguay Жыл бұрын
My new Ultimate Nest.js Microservices course will cover this! Stay tuned for its release in May.
@homelander225
@homelander225 2 жыл бұрын
How do we add multilpe database connections ? Can someone help
@its_grs
@its_grs 2 жыл бұрын
Great content. Thank you. I have a small doubt regarding registering the RmqModule. You have registered it in order module import. However If I want to use it in another module should I register again? Or is there anyway I can register it to a common module and import that module everywhere else in my code. For example emailQueue is something that I might require in multiple modules (order, billing and auth). Can you suggest me a generic way to register EMAIL_SERVICE (emailQueue) in all the modules please?
@shahzaibahmed4090
@shahzaibahmed4090 Жыл бұрын
Very helpful tutorial. Thank you so much.
@silarim1852
@silarim1852 2 жыл бұрын
how to setup load balancing in multiple server
@GodfatherOfKcontent
@GodfatherOfKcontent 2 жыл бұрын
@Michael, thank you for the great tutorial. I have a quick question regarding deployment. You see... the Billing service doesn't listen to any port. With this setup, how do I go about health-checking the service container within AWS ECS? The easiest option that I came to my mind is making it hybrid app just like the Auth service to be able to make a HTTP call to the container via the port. What else option do I have?
@anuragannu8930
@anuragannu8930 Жыл бұрын
damn, I learn so many things in one video, thanks, bro.
@samuelopeyemi8377
@samuelopeyemi8377 2 жыл бұрын
Hi Guay, can we have deployment... 🙏
@bhupenpal
@bhupenpal Жыл бұрын
Hi! Thanks for the great tutorial... Is it possible to specify queue while emitting the event?
@virajbaswana
@virajbaswana Жыл бұрын
Such an amazing video. Really helped me learn and build my own custom project. Much Thanks. Looking forward for more nestjs content
@mattiastornqvist5311
@mattiastornqvist5311 Жыл бұрын
Very good stuff indeed! Anyone got an idea of how the MongoDB connection string will look like if I try to connect to the running db instances using Compass?
@sigitkuncoro43
@sigitkuncoro43 2 жыл бұрын
really good tutorial, thank you for creating this video bay the way, sometimes when creating an app we also need the second auth for admin, regarding with auth guard, what is the best practice you advise for this case?
@milon27
@milon27 Жыл бұрын
@Michael Guay can you share any resources link how to setup individual package.json in each micro service?
@mguay
@mguay Жыл бұрын
My new Ultimate Nest.js Microservices course will cover this! Stay tuned for its release in May.
@joshhoffer
@joshhoffer 2 жыл бұрын
Michael Guay When I see this tutorial I see something That caters to my direct needs... I hate the overly simple out of the box lessons where you can tell the person is just reading from the documentation and giving you examples that do not function in the same actual way that a production application is going to... they will give you some generic things ... but then just slap a ribbon on the process and call it a day... your giving so many real world examples... and ones that actually illustrate some of the things that the documentation miss or gloss over too quickly... like for instance it was giving me some issues with understanding how things were injected -> because yea its obviously easy enough to use say a mongoose injection.. but to go in and inject the rabbitmq / injecting the billing service... all these interconnected pieces -> and then the fact that were workingn with it all under docker -> and in a single easy to follow flow that you give ever piece it's due time in explaining what it is and how it works... The fact that your showing us how Env can be dynamically used.. is huge... Probably not to someone that knows how to do it already -> but ive never seen that in a nest lesson... they always leave me as prepared as i already was after reading the docs... this gives the bread and butter and then some... please keep making these types of videos my friend
@mguay
@mguay 2 жыл бұрын
Thanks for your kind words!
@leducanh2225
@leducanh2225 Жыл бұрын
Thank you for sharing awesome source code.
@JollyReaper_666
@JollyReaper_666 Жыл бұрын
well explained, learned a lot, liked the way you make use of the common library for rmq and mongo I'm having a bit of trouble connecting to my mongodb when using compass, can I simply connect on localhost:27017 with root:password123 ? or is it different with the way it's set up in your video?
@ms0615122
@ms0615122 2 жыл бұрын
Thank you very much! Viewer from Taiwan.
@a.nk.r7209
@a.nk.r7209 2 жыл бұрын
Awesome quality content. No BS.
Deploy Node.js Microservices on AWS With EKS & Helm
40:04
Michael Guay
Рет қаралды 14 М.
Nest.js Microservices Tutorial in 20 Minutes
17:56
Michael Guay
Рет қаралды 108 М.
Man Mocks Wife's Exercise Routine, Faces Embarrassment at Work #shorts
00:32
Fabiosa Best Lifehacks
Рет қаралды 6 МЛН
小丑妹妹插队被妈妈教训!#小丑#路飞#家庭#搞笑
00:12
家庭搞笑日记
Рет қаралды 38 МЛН
The intro to Docker I wish I had when I started
18:27
typecraft
Рет қаралды 119 М.
NestJs Microservices with RabbitMQ
23:21
Computerix
Рет қаралды 13 М.
NestJS Microservices with RabbitMQ | Messenger Clone [1]
1:08:29
Jon Peppinck
Рет қаралды 42 М.
؟ Docker ليه بنستخدم 💙
18:52
Yehia Tech يحيى تك
Рет қаралды 85 М.
Microservices with Databases can be challenging...
20:52
Software Developer Diaries
Рет қаралды 48 М.
Nest.js Microservices with NATS, SQL, and Docker
2:20:27
Anson the Developer
Рет қаралды 13 М.
Decouple your NestJS code with this technique!
11:37
Marius Espejo
Рет қаралды 38 М.
Шаблоны проектирования для микросервисов
1:07:50
Александр Бармин
Рет қаралды 29 М.
Build GraphQL Microservices With Nest.js & Apollo Federation 2
29:56
Давайте поцарапаем iPhone 16 Pro Max!
0:57
Wylsacom
Рет қаралды 1,7 МЛН
Mac USB
0:59
Alina Saito / 斎藤アリーナ
Рет қаралды 24 МЛН