Тёмный

Nest.js Microservices Tutorial in 20 Minutes 

Michael Guay
Подписаться 20 тыс.
Просмотров 108 тыс.
50% 1

In this short tutorial, I show you how to create a Nest.js project with Microservices along with an API Gateway.
Github Repo: github.com/mgu...
Nest.js Documentation: docs.nestjs.co...
Get my highly-rated Udemy courses at a discount here: michaelguay.de...

Опубликовано:

 

4 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 117   
@ChromaDotNova
@ChromaDotNova 11 месяцев назад
First time stepping into the realm of microservices - I still had some questions after reading the NestJS documentation so I went to RU-vid, found your video, and after watching I understand the fundamentals a lot better. Thanks so much for taking the time to make this!
@rafaelfranco7643
@rafaelfranco7643 2 года назад
Finally a good example of microservices using nestjs! Thank you very much.
@Alex-bc3xe
@Alex-bc3xe 9 месяцев назад
Hmm I really didn't expect that it will be so easy explained. Great Job, a great developer understands he needs only to get the principles and basics right, the rest is his job and you delivered exactly that.
@Jasonjk74
@Jasonjk74 Год назад
Great video and an amazing amount of practical info/learning packed into 18 minutes
@illia_mikhow
@illia_mikhow 2 года назад
Loved the pace of a video. Short and filled with information. 10/10
@itmax77
@itmax77 2 года назад
I think I've seen you somewhere
@jeandedieuiradukunda6079
@jeandedieuiradukunda6079 21 час назад
this is awesome i now just got an idea of microservices
@danielborges8857
@danielborges8857 2 года назад
Your examples communicated some key concepts and clarified nest js implementation options. Thanks
@satadhi
@satadhi Месяц назад
On man you are so good. I liteally bought your udemy course. You are a great teacher sir
@progressnwimuelekara2167
@progressnwimuelekara2167 Год назад
Wow! Great video. Really commendable! I mean, in literally 20 minutes I've gotten a detailed, conceptual image of the entire NestJS Microservice technique
@chrismantonuk
@chrismantonuk 2 года назад
Great, thank you - a lot clearer to me now! You covered everything
@debasistripathy4459
@debasistripathy4459 Год назад
I DOUBT
@maksymbaranovskyi8362
@maksymbaranovskyi8362 5 месяцев назад
Thank you so much! Such a simple yet clear example.
@ayoubguismi4558
@ayoubguismi4558 2 года назад
As always simple and clear explanation, thank you michael !
@mguay
@mguay 2 года назад
Thank you as always, Ayoub!
@ikr0525
@ikr0525 Год назад
Thank you! Awesome video! In our company, someone was assigned to setup the microservices and I really did not mind to understand because I believed it was too complex for me. As long as the microservices were all set up, i just continued coding as usual. This video made it very easy to understand and I can now see why the dev who setup the microservices decided to go with certain approach. I'm curious about the authentication across different microservices, though. Can you make a video for that if possible? That would be amazing!
@millerbyte
@millerbyte 2 года назад
What's the point in using the event-based communication pattern if we have to declare / inject all the subscriber microservices (sample-analytics, sample-communication) within the publisher microservice (sample-backend)? Isn't one of the primary advantages of event-based communication the fact that the service publishing the event doesn't know / care about any downstream services that may subscribe to it? This seems like there's still tight coupling between services. For example, what happens if I want to add another service that cares about the user_created event -- will I have to modify the sample-backend to allow this? Seems like an antipattern. This isn't a criticism of you or the tutorial -- thank you for sharing! It's more a criticism of NestJS if this is how the expect you to handle event-based communication.
@mguay
@mguay 2 года назад
This is a great criticism and I wholly agree. I’m making a new Microservices video that uses RabitMQ as the messaging broker which allows us to remedy a lot of these concerns around tight coupling. Thanks for watching!
@millerbyte
@millerbyte 2 года назад
@@mguay Thanks for the reply, looking forward to the updated video!
@abdelhalim731
@abdelhalim731 Год назад
but this is good for communication between servers no?
@eihsan94
@eihsan94 2 года назад
Would like seeing this deploy using severless framework and lambda
@avimehenwal
@avimehenwal Год назад
Excellent vide Michael, love your content and way of explaining things. Keep it up
@mguay
@mguay Год назад
Thank you!
@hollynderisse645
@hollynderisse645 2 года назад
Thank you very much for sharing this tutorial. It's well explained and very helpful
@vinimaciel
@vinimaciel 10 месяцев назад
Awesome video, you made it so easy to understand
@alexsapon8769
@alexsapon8769 2 года назад
Nice example I would suggest you to use monorepos feature that Nestjs provides, quite smooth microservices architecture at the end, plus gives you ability to clean your codebase from code duplication such as dto's you're using across the services best regards
@uchihaashura5021
@uchihaashura5021 2 года назад
Hi but I'm quite struggle to exclude unnecessary dependency for each app, for example we add a new dependency for ervice A, but we don't need it in service B, when building docker image we are include all this dependencies, how we can exclude them to reduce docker image size ?
@mcc12000
@mcc12000 2 года назад
@@uchihaashura5021 having a monorepo doesn't mean that you have a single docker image i guess.
@sndro1
@sndro1 2 года назад
Does this mean that I can share models across services? Do you have any recommendations for tutorials about this?
@theaungmyatmoe
@theaungmyatmoe Год назад
@@sndro1 Model should not be shared to the others services. They should be domain specific to their own service. So that you have to attach service related domain object to your service
@sndro1
@sndro1 Год назад
@@theaungmyatmoe I do understand that but how do I share typescript types for these models/services (so that the consuming service knows what it gets)?
@behradkazemi213
@behradkazemi213 22 дня назад
great video thank you so much!
@malkasoft
@malkasoft 2 года назад
Amazing tutorial! Thanks for sharing
@thomasbalboa628
@thomasbalboa628 9 дней назад
WTF, the tutorial doesn't work, even when reproducing exactly what the author does, it bugs when sending the POST request in Postman. Even after cloning the repo and running both servers with 'nest start --watch', nothing happens. The request runs infinitely, and there's nothing in the logs.
@tesla1772
@tesla1772 2 года назад
i didn't understand how microservices get the event. http based api it is understood that port and ip is given but how does microservice listen to event
@PraneetNegi-n3i
@PraneetNegi-n3i Месяц назад
Can we use libs/common for Authorization and some other common utils like we do in monolithic project, using this microservice structure ? If Yes then please give me some references. Thanks
@Olixis
@Olixis 2 года назад
How does the "sample-backend" knows that "COMMUNICATION" refers to the "sample-communication" microservice? As far as I saw the "COMMUNICATION" token is only at the "sample-communication" microsservice
@muhammadsalikin3886
@muhammadsalikin3886 2 года назад
by using ClientProxy, sample-backend which acts as gateway is basically the one who reach out to the other services.
@PeterAkaliro
@PeterAkaliro 2 года назад
wow! so simple lol.... You are a life saver bruh
@henrycodingstack6952
@henrycodingstack6952 9 часов назад
I am a bit confused here i thought the sample-backend which is acting as the api gateway is supposed to pass the incoming request to a microservice to handle, whatever business logic and then the specific microservice can emit an event so that other services that needs to do anything with be notified.??
@imranabdulmalik3591
@imranabdulmalik3591 3 месяца назад
You're the best!
@jasonryu4495
@jasonryu4495 Год назад
Thank you! Very good for me.
@muratasarslan2359
@muratasarslan2359 Год назад
thanks a lot. very helpful. is there a way to avoid duplicating CreateUserEvent in all microservices?
@nnu5510
@nnu5510 Год назад
Great video, thank you.
@Thikondrius
@Thikondrius 11 месяцев назад
Great tutorial simple, and clear. Good job. Btw can I ask what your vscode theme is ?
@larswolter669
@larswolter669 Год назад
How do you effectively test automate these event / message based applications?
@EstebanHelgueroCardiff
@EstebanHelgueroCardiff Год назад
Awesome video!
@yousoffatomi
@yousoffatomi Год назад
thank you for record this video ♥
@hakanaki
@hakanaki Год назад
Please some question. - Why did you choose use TCP instead of GRPC and what are the benefits? - How do you host something like this 🥲🥲 - Is it possible to share code between services, like types or DTOs? Thank you for this video BTW, I've been struggling with this concept and you just simplified it in one short video. 👏🏽👏🏽
@kanishkasuvarna7985
@kanishkasuvarna7985 Год назад
+1
@talhacoder5084
@talhacoder5084 Год назад
that was so beautiful 🤯
@manorinfinity
@manorinfinity Год назад
Thanks for the video. Loved it. It would be good if you could do a video on microservices and monorepo in nestjs. I mean how do you create a monorepo microservices project in nestjs where we have one API gateway for http requests and all the other microservices listens to events sent by API gateway without allowing http requests on their own.
@mguay
@mguay Год назад
My new Ultimate Nest.js Microservices course will cover this! Stay tuned for its release in May.
@homelander973
@homelander973 Год назад
thank you a lot bro, it was really helpfull
@mahmoudfathy6332
@mahmoudfathy6332 Год назад
Amazing man 👌
@LasparkOficial
@LasparkOficial Год назад
Nice work!!
@siamak.hatami
@siamak.hatami 7 месяцев назад
Great, thanks.
@zackinfos5933
@zackinfos5933 8 месяцев назад
thank you Michael for everything, well how do you compare this approach adopted by you, where you have added multiple nestjs projects to one aorkspace, which i found flexible, VS or compared to the one adopted by nestjs monorepo (apps)? well honestly i find this approach more flexible as i have said above for many reasons: - Scalability. - Teams and colaboration. - Multi-lang dev environment. - Database per microservice and the hustle of dealing with monorepos setup and configs for shared files and packages like prisma for example. - Avoiding limitations by any given framework, which makes you finding yourself dealing with solving problems by the same language often with the help of the same tools which results at the end of the same results, thats what stand agains the microservices principle and patterns.
@danilopootaren4512
@danilopootaren4512 2 года назад
I loved it !! Quick question, would this work the same with docker container?
@romeobetances7964
@romeobetances7964 2 года назад
Great job!
@verrymariyanto8377
@verrymariyanto8377 Год назад
i learn a lota from this tutorial,, can you give litle bit explanation about how to get some return result about using this method,, if we using try catch in controller,, thx
@sg0101010
@sg0101010 Год назад
Great video. Question: I'm getting a "no elements in sequence" from the getAnalytics call ? I'm on version 9.x.x
@jafar1607
@jafar1607 9 месяцев назад
Brother. Can we have a multi tenant example with nest js ?
@hariharamoorthis3488
@hariharamoorthis3488 Год назад
Hi... Thanks for your tutorial... Can you please clear my doubt?.. can we call api endpoint of communication or analytics microservices?
@minhazahmed128
@minhazahmed128 Год назад
This is good but this is gonna take a lot spaces, why not using nestjs workspaces?
@cholasimmons
@cholasimmons Год назад
Subscribed!
@Akim-z8t
@Akim-z8t Год назад
What is that theme? pllz
@lialia3293
@lialia3293 5 месяцев назад
Great !
@ИванДрачев-ы3у
@ИванДрачев-ы3у Год назад
When i run 'sample-communication' app (after 'sample-backend' is running) - i got an error that port 3000 already in use...Could anyone give me an idea?
@navinmishra6038
@navinmishra6038 8 месяцев назад
As the communication microservice by default listens to 3000 port, we need to make backend server listen to another port(eg: 3001). Then we can run both service
@ninjatikeidu
@ninjatikeidu Год назад
At first it didn't work for me, after a while I understood that I needed to establish the host and port when registering the ClientsModule, after that it worked correctly, tks
@isaacnwankwo6634
@isaacnwankwo6634 Год назад
please How did you do that, I am facing the same challenge here. I
@isaacnwankwo6634
@isaacnwankwo6634 Год назад
please never mind, I have figured it out.
@miguecast
@miguecast 2 года назад
Do you know that Guay is a very common 80's spanish expresión that means "cool"?
@shalandichannel
@shalandichannel Год назад
Is there a way to use the TCP transport pattern with external apis that are not written with nestjs? And is it possible to use other TCP ports that are private to the microservices when dealing with TCP communication? Or must the traffic all go through the single "3000" port?
@mguay
@mguay Год назад
Get my highly-rated Udemy courses at a discount here: michaelguay.dev/udemy/
@jithinjacob2181
@jithinjacob2181 2 года назад
How can it handle parallel processing of requests in the backend, mostly i have seen people use Java /Python to work out the backend
@alvin3171997
@alvin3171997 2 года назад
Hi Micheal, have you used any backend framework in the past? Like Fastapi etc. Just wondering what’s the pros and cons of using Nestjs. Thank you so much for the video!
@mguay
@mguay 2 года назад
Good idea for a future video!
@deliomarcosdacostajunior3036
@deliomarcosdacostajunior3036 2 года назад
Thanks from Brasil ! õ/
@diegoalonso2832
@diegoalonso2832 2 года назад
I have a doubt Is there another way to consume mi grpc service without an api gateway?
@sabinshrestha267
@sabinshrestha267 Год назад
amazing
@maximcoding2667
@maximcoding2667 Год назад
How is it different from with gateway api + createProxyMiddleware ?
@ericww32
@ericww32 2 года назад
Is there a way to grab any message pattern and put it into a variable?
@sumitpatil7084
@sumitpatil7084 2 года назад
Hello Michael how can i use typescript in nestjs
@temidayomichael4646
@temidayomichael4646 2 года назад
Which one would you recommend between this pattern and the monorepo micro services pattern in your latest video and what’s the best practice in deployment and repo management? I think I like the monorepo more cos my team is small but I have no idea on the deployment. Thanks a lot!
@mguay
@mguay 2 года назад
Really it depends on the differences between Kafka and RabbitMQ. I would also recommend a monorepo for smaller teams as it is easier to work with, but it is also makes deployment easier.
@raneanish21
@raneanish21 2 года назад
How to implement multiple messagepatterns?
@HarikrishnanM0
@HarikrishnanM0 2 года назад
At what situations we should go for a microservice architecture ? I am basically developing rest apis .So how can we make a decision on building a micro service ?
@mguay
@mguay 2 года назад
Microservices help you manage complexity as the size of your application + team grows. For simple projects with one developer, they're not as necessary in my opinion.
@HarikrishnanM0
@HarikrishnanM0 2 года назад
@@mguay ok got it
@xixayyumiko6766
@xixayyumiko6766 2 года назад
how do I do if I made the microservice apart
@yadneshkhode3091
@yadneshkhode3091 2 года назад
How to use request body in services? without passing the body in functions in controllers
@mguay
@mguay 2 года назад
I may make a video on it in the future, but check out github.com/nestjs-steroids/async-context
@Varshakumari-uz8uo
@Varshakumari-uz8uo Год назад
Why I am getting listen EADDRINUSE : address already in use error.
@foued619
@foued619 Год назад
same problem, that's because both servers are trying to run on the same port (3000)
@navinmishra6038
@navinmishra6038 8 месяцев назад
@@foued619 As the communication microservice by default listens to 3000 port, we need to make backend server listen to another port(eg: 3001). Then we can run both service
@jazzdestructor
@jazzdestructor 2 года назад
Hey guys, What is the difference between emit and send methods?
@sarunmrzn
@sarunmrzn 2 года назад
I believe emit actually sends a request to the ms but send just proxies the entire request to ms, correct me if im wrong
@nanonkay5669
@nanonkay5669 2 года назад
Next, you show how to do it using a message broker
@lardosian
@lardosian 2 года назад
Could all these services be split into their own repo?
@mguay
@mguay 2 года назад
Sure you could but I’d say that typically doesn’t follow the standard practice of micro services. At the end of the day though do what best fits your needs.
@narrajayasri94
@narrajayasri94 Год назад
I am unable to get the output can u guide me or respond to my comment. Plz
@martinavalos1626
@martinavalos1626 Год назад
what do you think about using prisma package for handling databases queries? did you ever use it ?
@saurabhtalele1537
@saurabhtalele1537 4 месяца назад
🎉🎉🎉cool
@SRPPixels
@SRPPixels 2 года назад
when starting the communication server after running sample-backend. it is giving error that port 3000 already in use
@SRPPixels
@SRPPixels 2 года назад
I also cloned your github project. it is still giving the same error
@cess_uyi
@cess_uyi 2 года назад
Me too! Please how did you resolve this?
@hakeemullahjan
@hakeemullahjan 2 года назад
Still facing the issue after changing the PORTs.
@akhil0227
@akhil0227 2 года назад
on sample-backend in main.ts file . await app.listen(3001) and on sample-communication main.ts file - Transport.TCP, options:{port:3000} . use postman to send request in localhost:3001
@thaingocnguyen1015
@thaingocnguyen1015 2 года назад
me too, i don't know why it can work on his machine @@
@umer.on.youtube
@umer.on.youtube Год назад
Do not use a stupid max. Get on Windows.
@nditahsamweld346
@nditahsamweld346 2 года назад
Hi Michael Guay, what's your twitter handle. Nice job!
@mguay
@mguay 2 года назад
Thank you! I don't have a Twitter though.