NestJS Crash Course - Build a Complete Backend API

preview_player
Показать описание
This is a small part of my long 10-hour NestJS crash course. I really hope you enjoy it.

NestJS Udemy Course (with discount):

GitHub Repo:

Timeline:
0:00 - What is NestJS
12:00 - Controllers and Request Objects
1:38:00 - Abstracting Business Logic Services
1:59:00 - Validating the Incoming Request
2:26:49 - Transforming the Response Object
2:57:00 - Modules and File Structures
Рекомендации по теме
Комментарии
Автор

You should give a hint that the left-panned audio in the intro will resolve later on or people might jump ship :D

armaganvideos
Автор

Thank you Laith for the great content once again. I had to buy the Udemy course so I can the advanced parts.

ugochukwuavoaja
Автор

You are the best Sir. Thank you for always using typescript in most of your projects

afamsval
Автор

Awesome 👍. Please make a course on TypeOrm

syedalishahbukhari
Автор

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!

abdullahh.abdulazim
Автор

Great stuff. The amount of content you provide on here is ridiculous! How are you so productive???

leanprogrammer
Автор

Hey Laith, just letting you know that there is a YouTube channel named Voxmind with your udemy NestJS course (and a bunch of courses from other people). You might wanna do something about that.

GabrielGasp
Автор

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!

drewpetricc
Автор

Thanks alot. Will buy the udemy course.

saadowain
Автор

Can we know what are the topics and technologies your are working on ...

rakshiths.n
Автор

I'm looking forward for the next big project. Could you let us know when it will be published?

yassineaker
Автор

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?

geelemo
Автор

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) )

```

dumpstr
Автор

Thanks Laith. But I don't see any discount on udemy.

rakibullahsazib
Автор

Hy Mate, your videos are really amazing, please also make a video with this (Nest JS, TypeORM, GraphQL and PostgresQL) stack, thank you :)

dreamystudents
Автор

explaining things like what is request or how REST works in NodeJS framework course is a bit more than harsh :D

improvingwithfun
Автор

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?

edwardkeselman
Автор

Please make a microservice tutorial using Node.js

moylababa
Автор

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?

codernerd
Автор

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 ?

wahebbenzaid