-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
executable file
·3830 lines (3828 loc) · 150 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>
Official Courses | NestJS - Learn to build Node.js apps at any scale
</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, minimum-scale=1.0"
/>
<link rel="stylesheet" href="lib/bootstrap.css" />
<link rel="stylesheet" href="main.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,400;1,500&display=swap"
rel="stylesheet"
/>
<meta
name="description"
content="Official NestJS Courses from the NestJS creator and core team members. Learn everything from fundamentals, to more advanced topics such as authentication, microservices, GraphQL and much more."
/>
<meta name="robots" content="noodp" />
<link rel="canonical" href="https://courses.nestjs.com" />
<meta property="og:url" content="https://courses.nestjs.com" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary_large_image" />
<meta
property="og:site_name"
content="Official NestJS Courses - Learn to build Node.js apps at any scale"
/>
<meta
property="og:title"
content="Official NestJS Courses - Learn to build Node.js apps at any scale"
/>
<meta
property="og:description"
content="Official NestJS Courses from the NestJS creator and core team members. Learn everything from fundamentals, to more advanced topics such as authentication, microservices, GraphQL and much more."
/>
<meta
property="og:image"
content="https://courses.nestjs.com/img/nest-courses-og.png"
/>
<meta property="og:image:width" content="820" />
<meta property="og:image:height" content="429" />
<meta
name="twitter:description"
content="Official NestJS Courses. Learn everything from the basic principles, best-practices, tips & tricks, and advanced patterns straight from the framework's core team members."
/>
<meta
name="twitter:title"
content="Official NestJS Courses - Learn to build Node.js apps at any scale"
/>
<meta
name="google-site-verification"
content="lstrN-qqAaF2ypwi1xcDN4skjk0egXcmRMoLluMxAog"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="img/favicon-16x16.png"
/>
<link rel="icon" type="image/x-icon" href="img/favicon.ico" />
<link rel="manifest" href="img/manifest.webmanifest" />
<link rel="mask-icon" href="img/safari-pinned-tab.svg" color="#ed2945" />
<meta name="msapplication-config" content="img/browserconfig.xml" />
<meta name="msapplication-TileColor" content="#ed2945" />
<meta name="theme-color" content="#ffffff" />
<script
defer
src="https://use.fontawesome.com/releases/v6.4.2/js/all.js"
></script>
<script src="scripts.js"></script>
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-30617038-6"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-30617038-6");
</script>
<script type="application/ld+json">
[
{
"inLanguage": "en",
"@id": "https://courses.nestjs.com/",
"about": {
"name": "Development"
},
"@type": "Course",
"image": "https://courses.nestjs.com/img/nest-courses-og.png",
"description": "Whether you are a Node.js veteran, front-end developer, or even new to development. Learn everything about NestJS from the basic principles, best-practices, tips & tricks, to advanced patterns, getting you ready to build NestJS / Node.js applications at any scale. Prepare for an in-depth guided course & walkthrough of all the fundamentals of a NestJS application from the Creator Kamil Mysliwiec himself, and Mark Pieszak (Core Team Member).",
"publisher": {
"name": "NestJS",
"sameAs": "www.nestjs.com",
"@type": "Organization"
},
"@context": "http://schema.org",
"audience": {
"audienceType": [
"Beginner or advanced web developers who want to dive into backend (server-side) development with NestJS (Node.js)",
"Everyone who's interested in building modern, scalable and high-performing web applications",
"Experienced Node.js developers who want to dive into the full fledged NestJS framework and learn advanced concepts from GraphQL to Nest architecture."
],
"@type": "Audience"
},
"provider": {
"name": "Kamil Mysliwiec",
"sameAs": "https://nestjs.com",
"@type": "Organization"
},
"name": "Official NestJS Courses from the NestJS creator and core team members. Learn everything from fundamentals, to more advanced topics such as authentication, microservices, GraphQL and much more.",
"creator": [
{
"name": "Kamil Mysliwiec",
"@type": "Person"
},
{
"name": "Mark Pieszak",
"@type": "Person"
}
],
"isAccessibleForFree": false
},
{
"@context": "http://schema.org",
"brand": {
"name": "NestJS",
"description": "A progressive Node.js framework for building efficient, reliable and scalable server-side applications.",
"@type": "Brand",
"logo": "https://courses.nestjs.com/img/logo.svg"
},
"name": "Official NestJS Courses from the NestJS creator and core team members. Learn everything from fundamentals, to more advanced topics such as authentication, microservices, GraphQL and much more.",
"description": "Whether you are a Node.js veteran, front-end developer, or even new to development. Learn everything about NestJS from the basic principles, best-practices, tips & tricks, to advanced patterns, getting you ready to build NestJS / Node.js applications at any scale. Prepare for an in-depth guided course & walkthrough of all the fundamentals of a NestJS application from the Creator Kamil Mysliwiec himself, and Mark Pieszak (Core Team Member).",
"image": "https://courses.nestjs.com/img/nest-courses-og.png",
"@type": "Product"
}
]
</script>
</head>
<body>
<div class="navbar-sticky">
<div class="container">
<div class="logo-wrapper d-inline-block">
<a href="/">
<img
src="img/logo-small-gradient.svg"
alt="NestJS - A progressive Node.js framework"
/>
</a>
</div>
<ul class="nav-wrapper d-inline-block">
<li>
<a
href="https://nestjs.com"
title="NestJS - A progressive Node.js framework"
><span>OUR WEBSITE</span></a
>
</li>
<li>
<a
href="https://enterprise.nestjs.com"
title="Enterprise | NestJS - A progressive Node.js framework"
><span>ENTERPRISE</span></a
>
</li>
<li>
<span
><span class="new">NEW</span><span class="text">RESOURCES</span>
<i class="fa-solid fa-chevron-down arrow"></i
></span>
<div class="sub-nav-outlet">
<div class="sub-nav-wrapper sub-nav-wrapper--light">
<span class="nav-category">Education</span>
<ul>
<li>
<a
href="https://docs.nestjs.com"
title="Documentation | NestJS - A progressive Node.js framework"
>Documentation</a
>
</li>
</ul>
<span class="nav-category">Platforms</span>
<ul>
<li>
<a
href="https://jobs.nestjs.com"
title="Jobs | NestJS - A progressive Node.js framework"
>Jobs</a
>
</li>
</ul>
<span class="nav-category">Tools</span>
<ul>
<li>
<a
href="https://devtools.nestjs.com"
title="Devtools | NestJS - A progressive Node.js framework"
>Devtools</a
>
</li>
<li>
<a
href="https://mau.nestjs.com"
title="Deploy with Mau | NestJS - A progressive Node.js framework"
>Mau</a
>
</li>
</ul>
</div>
</div>
</li>
<li class="social-icon">
<a
href="https://github.com/nestjs/nest"
target="_blank"
class="icon m-l-30"
>
<i class="fa-brands fa-github"></i>
</a>
</li>
<li class="social-icon">
<a
href="https://twitter.com/nestframework"
target="_blank"
class="icon"
>
<i class="fa-brands fa-x-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="parity-discount-wrapper">
<div class="container">
<p>
Is your company located in
<img
src="https://raw.githubusercontent.com/hjnilsson/country-flags/master/svg/in.svg"
width="20"
alt="Flag"
/>? Shoot us an email to get a <span>-60%</span> parity discount!
<a
href="mailto:support@nestjs.com?subject=Courses - Parity discount&cc=hello@trilon.io&body=Hi team,%0D%0A%0D%0AWe would be interested in getting the parity discount.%0D%0A%0D%0ACompany: ...%0D%0AWebsite: ...%0D%0ALocation: ... %0D%0ANumber of copies (for each employee): ..."
>Get now</a
>
</p>
</div>
</div>
<div class="preorder-discount-wrapper">
<div class="container">
<p>
Save <span>25%</span> and purchase NestJS Fundamentals now -
<strong class="timeleft"></strong>
<a href="#overview" class="anchor">More</a>
</p>
</div>
</div>
<header class="page-header">
<div class="container">
<div class="top-wrapper">
<div class="logo-wrapper d-inline-block">
<a href="/">
<img
src="img/logo-small-gradient.svg"
alt="NestJS - A progressive Node.js framework"
/>
</a>
</div>
<div class="mobile-nav-icon pull-right">
<span></span>
<div class="fill"></div>
</div>
<nav class="mobile-nav">
<div class="mobile-nav-head">
<div class="mobile-nav-logo">
<a href="/">
<img
src="img/logo-small-gradient.svg"
alt="NestJS - A progressive Node.js framework"
/>
</a>
</div>
<div class="mobile-nav-close">
<span></span>
</div>
</div>
<ul>
<li>
<a
href="https://nestjs.com"
title="NestJS - A progressive Node.js framework"
><span>OUR WEBSITE</span></a
>
</li>
<li>
<a
href="https://enterprise.nestjs.com"
title="Enterprise | NestJS - A progressive Node.js framework"
><span>ENTERPRISE</span></a
>
</li>
<li>
<a
href="https://jobs.nestjs.com"
title="Jobs | NestJS - A progressive Node.js framework"
><span>JOBS</span></a
>
</li>
<li>
<a
href="https://devtools.nestjs.com"
title="Devtools | NestJS - A progressive Node.js framework"
><span>DEVTOOLS</span></a
>
</li>
<li>
<a
href="https://mau.nestjs.com"
title="Deploy with Mau | NestJS - A progressive Node.js framework"
><span>DEPLOY WITH MAU</span><span class="new">NEW</span></a
>
</li>
<li>
<a
href="https://github.com/nestjs/nest"
target="_blank"
title="GitHub | NestJS - A progressive Node.js framework"
><span>GITHUB</span></a
>
</li>
</ul>
<div class="mobile-nav-footer">
<a
href="https://docs.nestjs.com"
title="Documentation | NestJS - A progressive Node.js framework"
class="btn btn-primary d-inline-block"
><span>DOCUMENTATION</span></a
>
</div>
</nav>
<nav class="pull-right hidden-md">
<ul class="nav-wrapper">
<li>
<a
href="https://nestjs.com"
title="NestJS - A progressive Node.js framework"
><span>OUR WEBSITE</span></a
>
</li>
<li>
<a
href="https://enterprise.nestjs.com"
title="Enterprise | NestJS - A progressive Node.js framework"
><span>ENTERPRISE</span></a
>
</li>
<li>
<span class="sub-nav-trigger"
><span class="new">NEW</span
><span class="text">RESOURCES</span>
<i class="fa-solid fa-chevron-down arrow"></i
></span>
<div class="sub-nav-outlet">
<div class="sub-nav-wrapper">
<span class="nav-category">Education</span>
<ul>
<li>
<a
href="https://docs.nestjs.com"
title="Documentation | NestJS - A progressive Node.js framework"
>Documentation</a
>
</li>
</ul>
<span class="nav-category">Platforms</span>
<ul>
<li>
<a
href="https://jobs.nestjs.com"
title="Jobs | NestJS - A progressive Node.js framework"
>Jobs</a
>
</li>
</ul>
<span class="nav-category">Tools</span>
<ul>
<li>
<a
href="https://devtools.nestjs.com"
title="Devtools | NestJS - A progressive Node.js framework"
>Devtools</a
>
</li>
<li>
<a
href="https://mau.nestjs.com"
title="Deploy with Mau | NestJS - A progressive Node.js framework"
>Deploy with Mau</a
>
</li>
</ul>
</div>
</div>
</li>
<li class="social-icon">
<svg width="0" height="0" class="gradient-svg">
<defs>
<linearGradient
id="primary-gradient"
x1="0%"
x2="100%"
y1="0%"
y2="0%"
gradientUnits="userSpaceOnUse"
>
<stop offset="0%" stop-color="#ea2845" />
<stop offset="100%" stop-color="#ea2868" />
</linearGradient>
</defs>
</svg>
<a
href="https://github.com/nestjs/nest"
target="_blank"
class="icon"
>
<i class="fa-brands fa-github"></i>
</a>
</li>
<li class="social-icon">
<a
href="https://twitter.com/nestframework"
target="_blank"
class="icon"
>
<i class="fa-brands fa-x-twitter"></i>
</a>
</li>
</ul>
</nav>
<div class="main-wrapper">
<h1>Official NestJS Courses</h1>
<h4>
Learn everything you need to master NestJS and tackle modern
backend applications at any scale.
</h4>
<div class="buttons-wrapper">
<a href="#overview" class="btn btn-primary d-inline-block anchor">
<span>See courses</span></a
>
</div>
</div>
</div>
</div>
</header>
<div class="course-info-wrapper" id="overview">
<div class="container">
<div class="row">
<div class="col-md-5 col-md-push-7">
<div class="checkout-wrapper">
<iframe
src="https://player.vimeo.com/video/433943559?title=0&byline=0&portrait=0&sidedock=0&controls=0"
width="380"
height="210"
frameborder="0"
allow="autoplay; fullscreen"
allowfullscreen
></iframe>
<div class="teachers-wrapper clearfix">
<div class="teacher-meta">
<div class="teacher-image">
<img src="img/photo-kamil.png" />
</div>
<div class="teacher-text">
<h3>Kamil Mysliwiec</h3>
<p>Creator of NestJS</p>
</div>
</div>
<div class="teacher-meta">
<div class="teacher-image">
<img src="img/photo-mark.png" />
</div>
<div class="teacher-text">
<h3>Mark Pieszak</h3>
<p>Core Team Member</p>
</div>
</div>
</div>
<h5 class="price">
<span class="discount">-25%</span>
<span class="current-price">$129.99</span>
<span class="original-price">$175.99</span>
<span class="vat"
>+VAT for EU <img src="/img/eu-flag.svg" width="19"
/></span>
</h5>
<div class="discount-tooltip tooltip">
<p>
Is your company located in
<img
src="https://raw.githubusercontent.com/hjnilsson/country-flags/master/svg/in.svg"
width="20"
alt="Flag"
/>?<br />
Get a <span>-60%</span> parity discount
<a
href="mailto:support@nestjs.com?subject=Courses - Parity discount&cc=hello@trilon.io&body=Hi team,%0D%0A%0D%0AWe would be interested in getting the parity discount.%0D%0A%0D%0ANOTE: This discount is available to companies, not individuals.%0D%0A%0D%0ACompany: ...%0D%0AWebsite: ...%0D%0ALocation: ... %0D%0ANumber of copies (for each employee): ... [minimum 3 employees]"
>now</a
>!
</p>
</div>
<a
href="https://learn.nestjs.com/purchase?product_id=5676925"
class="btn btn-green"
>
Purchase Now
<span class="icon"><i class="fas fa-shopping-cart"></i></span>
</a>
<span class="discount-note">
Need more than 5 licenses?
<a href="mailto:support@nestjs.com">Contact us</a> and get a
discount!
</span>
</div>
</div>
<div class="col-md-7 col-md-pull-5 course-info">
<h2>NestJS Fundamentals Course</h2>
<p class="large-text">
Get up to speed with NestJS fast.<br />
Master the building blocks and essential concepts behind creating
your own enterprise-grade applications.
</p>
<p>
Prepare for an in-depth guided course & walk-through of all the
fundamentals of a NestJS application from the Creator Kamil
Mysliwiec himself, and Mark Pieszak (Core Team Member).
</p>
<ul>
<li>
<span><i class="fas fa-check"></i></span> Step-by-step lesson
progression, code everything alongside us!
</li>
<li>
<span><i class="fas fa-check"></i></span> Featuring 80 videos
(with subtitles) and over 5 hours of content
</li>
<li>
<span><i class="fas fa-check"></i></span> Build a real-world
REST API application with NestJS
</li>
<li>
<span><i class="fas fa-check"></i></span> Learn and use all the
most important NestJS building blocks
</li>
<li>
<span><i class="fas fa-check"></i></span> Learn how to interact
with both SQL & NoSQL databases
</li>
<li>
<span><i class="fas fa-check"></i></span> Official NestJS
Certificate of Completion
</li>
</ul>
<h3 class="m-t-40">What's inside the course...</h3>
<div class="curriculum-wrapper">
<div class="curriculum-block opened">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Getting Started</h5>
<span>4 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6>1. Introduction to NestJS</h6>
<span>3:54</span>
</div>
<div class="video-item">
<h6>
2. Installing the NestJS CLI (command-line interface)
</h6>
<span>1:27</span>
</div>
<div class="video-item">
<h6 class="preview-video-title">
3. Generating our first NestJS Application
</h6>
<span>1:32</span>
<button class="btn-watch" data-video-id="433942660">
<i class="fas fa-play"></i> Watch
</button>
</div>
<div class="video-item">
<h6>4. What’s inside a NestJS Application</h6>
<span>4:04</span>
</div>
<div class="video-item">
<h6>5. What we'll be building in this course</h6>
<span class="lesson-icon"
><i class="far fa-file-alt"></i
></span>
</div>
<div class="video-item">
<h6>6. Beginning your NestJS Journey</h6>
<span class="lesson-icon"
><i class="far fa-file-alt"></i
></span>
</div>
</div>
</div>
<div class="curriculum-block">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Creating a REST API application</h5>
<span>15 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6>1. Prerequisite: Install Insomnia</h6>
<span>0:29</span>
</div>
<div class="video-item">
<h6>2. Running NestJS in Development Mode</h6>
<span>1:06</span>
</div>
<div class="video-item">
<h6>3. Creating a Basic Controller</h6>
<span>4:52</span>
</div>
<div class="video-item">
<h6 class="preview-video-title">4. Use Route Parameters</h6>
<span>2:05</span>
<button class="btn-watch" data-video-id="433943559">
<i class="fas fa-play"></i> Watch
</button>
</div>
<div class="video-item">
<h6>5. Handling Request Body / Payload</h6>
<span>1:48</span>
</div>
<div class="video-item">
<h6>6. Response Status Codes</h6>
<span>4:13</span>
</div>
<div class="video-item">
<h6>7. Handling Update and Delete Requests</h6>
<span>3:04</span>
</div>
<div class="video-item">
<h6>8. Implement Pagination with Query Parameters</h6>
<span>2:19</span>
</div>
<div class="video-item">
<h6>9. Creating a Basic Service</h6>
<span>7:53</span>
</div>
<div class="video-item">
<h6>10. Send User-Friendly Error Messages</h6>
<span>3:49</span>
</div>
<div class="video-item">
<h6>11. Encompass Business-Domain in Modules</h6>
<span>4:37</span>
</div>
<div class="video-item">
<h6>12. Introduction to Data Transfer Objects</h6>
<span>6:29</span>
</div>
<div class="video-item">
<h6 class="preview-video-title">
13. Validate Input Data with Data Transfer Objects
</h6>
<span>7:24</span>
<button class="btn-watch" data-video-id="447088958">
<i class="fas fa-play"></i> Watch
</button>
</div>
<div class="video-item">
<h6>14. Handling Malicious Request Data</h6>
<span>2:09</span>
</div>
<div class="video-item">
<h6>15. Auto-transform Payloads to DTO instances</h6>
<span>3:01</span>
</div>
<div class="video-item">
<h6>16. Chapter 2 - Review Quiz</h6>
<span class="lesson-icon"
><i class="fas fa-tasks"></i
></span>
</div>
</div>
</div>
<div class="curriculum-block">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Add PostgreSQL with TypeORM</h5>
<span>13 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6>1. Before we Get Started</h6>
<span>0:46</span>
</div>
<div class="video-item">
<h6>2. Prerequisite: Install Docker</h6>
<span>2:09</span>
</div>
<div class="video-item">
<h6>3. Running PostgreSQL</h6>
<span>3:06</span>
</div>
<div class="video-item">
<h6>4. Introducing the TypeORM Module</h6>
<span>4:04</span>
</div>
<div class="video-item">
<h6>5. Creating a TypeORM Entity</h6>
<span>4:00</span>
</div>
<div class="video-item">
<h6>6. Use Repository to Access Database</h6>
<span>7:02</span>
</div>
<div class="video-item">
<h6>7. Create a Relation between two Entities</h6>
<span>6:14</span>
</div>
<div class="video-item">
<h6>8. Retrieve Entities with their Relations</h6>
<span>3:14</span>
</div>
<div class="video-item">
<h6>9. Using Cascading Inserts and Updates</h6>
<span>4:49</span>
</div>
<div class="video-item">
<h6>10. Adding Pagination</h6>
<span>4:55</span>
</div>
<div class="video-item">
<h6>11. Use Transactions</h6>
<span>5:33</span>
</div>
<div class="video-item">
<h6>12. Adding Indexes to Entities</h6>
<span>0:54</span>
</div>
<div class="video-item">
<h6>13. Setting up Migrations</h6>
<span>6:57</span>
</div>
<div class="video-item">
<h6>14. Chapter 3 - Review Quiz</h6>
<span class="lesson-icon"
><i class="fas fa-tasks"></i
></span>
</div>
</div>
</div>
<div class="curriculum-block">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Dependency Injection</h5>
<span>11 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6 class="preview-video-title">
1. Understand Dependency Injection
</h6>
<span>3:59</span>
<button class="btn-watch" data-video-id="430687886">
<i class="fas fa-play"></i> Watch
</button>
</div>
<div class="video-item">
<h6>2. Control NestJS Module Encapsulation</h6>
<span>3:06</span>
</div>
<div class="video-item">
<h6>3. Diving Into Custom Providers</h6>
<span>1:17</span>
</div>
<div class="video-item">
<h6>4. Value based Providers</h6>
<span>0:56</span>
</div>
<div class="video-item">
<h6>5. Non-class-based Provider Tokens</h6>
<span>3:10</span>
</div>
<div class="video-item">
<h6>6. Class Providers</h6>
<span>1:03</span>
</div>
<div class="video-item">
<h6>7. Factory Providers</h6>
<span>2:20</span>
</div>
<div class="video-item">
<h6>8. Leverage Async Providers</h6>
<span>2:08</span>
</div>
<div class="video-item">
<h6>9. Create a Dynamic Module</h6>
<span>3:55</span>
</div>
<div class="video-item">
<h6>10. Control Providers Scope</h6>
<span>3:59</span>
</div>
<div class="video-item">
<h6>11. Diving Deeper Into Request-Scoped Providers</h6>
<span>3:23</span>
</div>
<div class="video-item">
<h6>12. Chapter 4 - Review Quiz</h6>
<span class="lesson-icon"
><i class="fas fa-tasks"></i
></span>
</div>
</div>
</div>
<div class="curriculum-block">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Application Configuration</h5>
<span>7 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6>1. Introducing the Config Module</h6>
<span>4:41</span>
</div>
<div class="video-item">
<h6>2. Custom Environment File Paths</h6>
<span>1:17</span>
</div>
<div class="video-item">
<h6>3. Schema Validation</h6>
<span>2:59</span>
</div>
<div class="video-item">
<h6>4. Using the Config Service</h6>
<span>2:19</span>
</div>
<div class="video-item">
<h6>5. Custom Configuration Files</h6>
<span>4:32</span>
</div>
<div class="video-item">
<h6>
6. Configuration Namespaces and Partial Registration
</h6>
<span>4:58</span>
</div>
<div class="video-item">
<h6>7. Asynchronously Configure Dynamic Modules</h6>
<span>3:08</span>
</div>
<div class="video-item">
<h6>8. Chapter 5 - Review Quiz</h6>
<span class="lesson-icon"
><i class="fas fa-tasks"></i
></span>
</div>
</div>
</div>
<div class="curriculum-block">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Other Building Blocks by Example</h5>
<span>10 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6>1. Introducing More Building Blocks</h6>
<span>2:20</span>
</div>
<div class="video-item">
<h6>2. Understanding Binding Techniques</h6>
<span>6:19</span>
</div>
<div class="video-item">
<h6>3. Catch Exceptions with Filters</h6>
<span>7:24</span>
</div>
<div class="video-item">
<h6>4. Protect Routes with Guards</h6>
<span>7:39</span>
</div>
<div class="video-item">
<h6>
5. Using Metadata to Build Generic Guards or Interceptors
</h6>
<span>10:05</span>
</div>
<div class="video-item">
<h6 class="preview-video-title">
6. Add Pointcuts with Interceptors
</h6>
<span>7:01</span>
<button class="btn-watch" data-video-id="447091051">
<i class="fas fa-play"></i> Watch
</button>
</div>
<div class="video-item">
<h6>7. Handling Timeouts with Interceptors</h6>
<span>4:02</span>
</div>
<div class="video-item">
<h6>8. Creating Custom Pipes</h6>
<span>5:48</span>
</div>
<div class="video-item">
<h6>9. Bonus: Add Request Logging with Middleware</h6>
<span>6:15</span>
</div>
<div class="video-item">
<h6>10. Bonus: Create Custom Param Decorators</h6>
<span>3:49</span>
</div>
<div class="video-item">
<h6>11. Chapter 6 - Review Quiz</h6>
<span class="lesson-icon"
><i class="fas fa-tasks"></i
></span>
</div>
</div>
</div>
<div class="curriculum-block">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Generating OpenAPI Specification</h5>
<span>5 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6>1. Introducing the Swagger Module</h6>
<span>3:44</span>
</div>
<div class="video-item">
<h6>2. Enabling CLI Plugin</h6>
<span>3:42</span>
</div>
<div class="video-item">
<h6>3. Decorating Model Properties</h6>
<span>1:20</span>
</div>
<div class="video-item">
<h6>4. Adding Example Responses</h6>
<span>2:03</span>
</div>
<div class="video-item">
<h6>5. Using Tags to Group Resources</h6>
<span>1:04</span>
</div>
<div class="video-item">
<h6>6. Chapter 7 - Review Quiz</h6>
<span class="lesson-icon"
><i class="fas fa-tasks"></i
></span>
</div>
</div>
</div>
<div class="curriculum-block">
<div class="category-heading">
<i class="fas fa-chevron-down"></i>
<h5>Testing</h5>
<span>6 lessons</span>
</div>
<div class="category-items">
<div class="video-item">
<h6>1. Introduction to Jest</h6>
<span>1:50</span>
</div>
<div class="video-item">
<h6>2. Getting Started with Test Suites</h6>
<span>8:44</span>
</div>