NestJS Crash Course - Build a Complete Backend API

  Рет қаралды 48,868

Laith Academy

Laith Academy

Күн бұрын

Пікірлер: 45
@armaganvideos
@armaganvideos 2 жыл бұрын
You should give a hint that the left-panned audio in the intro will resolve later on or people might jump ship :D
@JimKim-0
@JimKim-0 6 ай бұрын
bruh, you saved me lol
@ugochukwuavoaja8924
@ugochukwuavoaja8924 2 жыл бұрын
Thank you Laith for the great content once again. I had to buy the Udemy course so I can the advanced parts.
@syedalishahbukhari8638
@syedalishahbukhari8638 2 жыл бұрын
Awesome 👍. Please make a course on TypeOrm
@GabrielGasp
@GabrielGasp Жыл бұрын
Hey Laith, just letting you know that there is a KZbin channel named Voxmind with your udemy NestJS course (and a bunch of courses from other people). You might wanna do something about that.
@laithacademy
@laithacademy Жыл бұрын
Thanks friend, I’ll try to take care of it
@drewpetricc
@drewpetricc 2 жыл бұрын
Love this video, bought the course on udemy too. Anyone know how are he is formatting lines like @2:36:35 ?? I know on Mac it's shift+option+F by default to 'format' but is that all that's happening? Thank you for all your great teaching Laith!
@mrsrv7
@mrsrv7 2 жыл бұрын
He might have the format on save turned on. If you see once the file is saved, the code is formatted immediately.
@yassineaker
@yassineaker 2 жыл бұрын
I'm looking forward for the next big project. Could you let us know when it will be published?
@rakshiths.n9680
@rakshiths.n9680 2 жыл бұрын
Can we know what are the topics and technologies your are working on ...
@dumpst3r68
@dumpst3r68 2 жыл бұрын
thanks for the great video, Laith. Out of curiosity, is there a particular reason you filter AND find a report? Find will return the first report for which the id === the id passed in, so wouldn't it make sense to use either filter (filter by id) or find (by id)? Seems almost redundant. The only use case I can see for this is when you initially set up your data.ts, if you have two ids that are the same. Thanks, and again, great job. I love learning from your content. Example: ``` [ { 'id': 1, 'value': 'yes'}, {'id': 2, 'value': 'no'}, { 'id': 3, 'value': 'yes'} ].filter(report => report['value'] === 'yes').find(report => report.id === 1) will return { 'id': 1, 'value': 'yes'} [{ 'id': 1, 'value': 'yes'}, {'id': 2, 'value': 'no'}].find(report => report.id === 1) will also return { 'id': 1, 'value': 'yes'} (as will just [...].filter(report => report.id === 1) ) ```
@piotrjan2927
@piotrjan2927 2 жыл бұрын
As far as I can see, we filter by report type, and then find by item id. We could just use find(r => r.type === type && r.id === id), but it would return exactly the same result.
@Slayre77
@Slayre77 2 жыл бұрын
I am curious about this as well. Assuming all IDs are unique, why do we have to filter for the type before finding an individual instance of report?
@fleckenfurz77
@fleckenfurz77 2 жыл бұрын
@@Slayre77 I am wondering about this longwinded approach as well... I think: const report = data.report.find(r => r.id === id) report.amount = body.amount report.source = body.source return report ..does exactly the same
@geelemo
@geelemo 2 жыл бұрын
hello, I'm having an issue where when I throw new HttpException or any type of exception my app stops running and is terminated. Also the response code remains 201. Any help?
@codernerd7076
@codernerd7076 2 жыл бұрын
If only it had one 3rd project with Graphql and Auth to follow up the other course, also does the final project use secure cookies?
@mickaelrichard7255
@mickaelrichard7255 2 жыл бұрын
I agree
@rakibullahsazib1268
@rakibullahsazib1268 2 жыл бұрын
Thanks Laith. But I don't see any discount on udemy.
@moylababa8196
@moylababa8196 2 жыл бұрын
Please make a microservice tutorial using Node.js
@NathanielBabalola
@NathanielBabalola 2 жыл бұрын
Tbh it's very important, tutorials on this is very rare
@edwardkeselman5118
@edwardkeselman5118 2 жыл бұрын
Is there a reason not to use Expose decorator with the name createdAt over created_at property? I tried it and it worked, why do I need to expose a method?
@abdullahh.abdulazim228
@abdullahh.abdulazim228 2 жыл бұрын
Good stuff Laith, wanna suggest that you consider adding a mongoDB/nest mongoose with GraphQL as an additional section in your Udemy course, that would be great!
@mahdisalmanizadegan5595
@mahdisalmanizadegan5595 2 жыл бұрын
great course
@leanprogrammer
@leanprogrammer 2 жыл бұрын
Great stuff. The amount of content you provide on here is ridiculous! How are you so productive???
@nnaemekaish007
@nnaemekaish007 2 жыл бұрын
Great, now I can apply to Prod***
@saadowain3511
@saadowain3511 2 жыл бұрын
Thanks alot. Will buy the udemy course.
@boristheblad
@boristheblad Жыл бұрын
Very solid.
@wahebbenzaid543
@wahebbenzaid543 2 жыл бұрын
Nothing to say ! this is a great tutorial, I was waiting for it. By the way, what do you recommand for a nodejs beginner, express or nest ?
@zedshockblade7157
@zedshockblade7157 2 жыл бұрын
nest is built on top of express. so express first.
@centereddev
@centereddev 2 жыл бұрын
I would probably say Express too since it's much simpler, but there's something to be said for learning a framework with strong conventions like Nest early on. I Iearned Ruby on Rails early on and it helped me recognize conventions in other frameworks.
@justhooman4682
@justhooman4682 2 жыл бұрын
if you're not looking out for a job, expressjs will do for everything. otherwise, learn expressjs with pretty much everything you would want to do in nestjs if you're new to backend, and then migrate to nestjs. this way you won't have to tackle everything at once.
@improvingwithfun
@improvingwithfun Жыл бұрын
explaining things like what is request or how REST works in NodeJS framework course is a bit more than harsh :D
@afamsval
@afamsval 2 жыл бұрын
You are the best Sir. Thank you for always using typescript in most of your projects
@eli007s
@eli007s 2 жыл бұрын
meh coupon no longer works =/
@dreamystudents2666
@dreamystudents2666 Жыл бұрын
Hy Mate, your videos are really amazing , please also make a video with this (Nest JS, TypeORM, GraphQL and PostgresQL) stack, thank you :)
@ol1175
@ol1175 2 жыл бұрын
Thanks , good one!
@manoj-k
@manoj-k 2 жыл бұрын
🔥🔥🔥
@abessesmahi4888
@abessesmahi4888 2 жыл бұрын
Awesome 👌
@mahendranath2504
@mahendranath2504 2 жыл бұрын
Thank you so much ❤️👍🏼🎉⭐🙏
@webpro1608
@webpro1608 2 жыл бұрын
Nice👌
@ryanrahman26
@ryanrahman26 2 жыл бұрын
Thank you very much..... i can't speak
@MaksymMinenko
@MaksymMinenko 2 жыл бұрын
You should have used Prisma.
@H_I_R_B_O
@H_I_R_B_O 2 жыл бұрын
BRO.....your first section has no sound man
@gilbertocolten1789
@gilbertocolten1789 2 жыл бұрын
This is the part of my day I always enjoy!! The secret to success = P R O M O S M!!!
NestJS Crash Course
1:40:07
Anson the Developer
Рет қаралды 185 М.
NestJs Course for Beginners - Create a REST API
3:42:09
freeCodeCamp.org
Рет қаралды 1,7 МЛН
Support each other🤝
00:31
ISSEI / いっせい
Рет қаралды 81 МЛН
1% vs 100% #beatbox #tiktok
01:10
BeatboxJCOP
Рет қаралды 67 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
TypeORM Crash Course - TypeScript & Node ORM
2:01:23
Laith Academy
Рет қаралды 102 М.
NestJS Tutorial For Beginners - Learn NestJS
51:49
PedroTech
Рет қаралды 17 М.
NestJS + Prisma Deep Dive
51:42
Michael Guay
Рет қаралды 27 М.
Nestjs Full Course 2022 | Beginner Nestjs Tutorial
2:38:24
Bitfumes
Рет қаралды 89 М.
Full Stack Authentication With Next.JS | Next Auth | Nest.JS
1:33:47
Vue 3 Routing - Beginner to Advanced
1:17:05
Laith Academy
Рет қаралды 38 М.
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 М.
CRUD API Tutorial - Node, Express, MongoDB
1:33:14
freeCodeCamp.org
Рет қаралды 315 М.