Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Master NestJS 9 - Node.js Framework 2023, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:05:46
    About Node, Express, Nest and Backend Development
  • Урок 2. 00:02:00
    How to Get Help?
  • Урок 3. 00:01:57
    Getting the Source Code!
  • Урок 4. 00:02:10
    Don't Know TypeScript or JavaScript?
  • Урок 5. 00:01:43
    Software You Need (Node, Docker, Postman)
  • Урок 6. 00:01:19
    Using Postman
  • Урок 7. 00:04:14
    Using Visual Studio Code
  • Урок 8. 00:04:48
    Front-End Application (OPTIONAL!)
  • Урок 9. 00:00:40
    Introduction to NestJS - Section Intro
  • Урок 10. 00:02:30
    Installing and Using Nest CLI
  • Урок 11. 00:04:57
    NestJS Project Structure
  • Урок 12. 00:02:29
    Controllers, Routing, Requests - Section Intro
  • Урок 13. 00:05:15
    Controllers
  • Урок 14. 00:06:35
    Resource Controller
  • Урок 15. 00:03:14
    Route Parameters
  • Урок 16. 00:02:07
    Request Body
  • Урок 17. 00:05:21
    Responses and Status Codes
  • Урок 18. 00:03:06
    Request Payload - Data Transfer Objects
  • Урок 19. 00:04:24
    The Update Payload
  • Урок 20. 00:12:22
    A Working API Example
  • Урок 21. 00:03:06
    Database Basics - Section Introduction
  • Урок 22. 00:03:13
    Adding Docker to the Stack
  • Урок 23. 00:06:57
    Running the Database with Docker Compose
  • Урок 24. 00:02:18
    Introduction to ORMs
  • Урок 25. 00:03:59
    Connecting to the Database
  • Урок 26. 00:07:51
    The Entity (Primary Key & Columns)
  • Урок 27. 00:02:33
    Repository Pattern
  • Урок 28. 00:03:06
    TypeORM 3 UPGRADE GUIDE!
  • Урок 29. 00:06:35
    Repository in Practice
  • Урок 30. 00:08:41
    Repository Querying Criteria and Options
  • Урок 31. 00:03:29
    Data Validation - Section Introduction
  • Урок 32. 00:02:33
    Introduction to Pipes
  • Урок 33. 00:06:06
    Input Validation
  • Урок 34. 00:05:33
    Validation Groups and Options
  • Урок 35. 00:07:25
    Modules, Providers, Dependency Injection - Section Introduction
  • Урок 36. 00:03:37
    Introduction to Modules, Providers and Dependency Injection
  • Урок 37. 00:02:47
    Creating a Custom Module
  • Урок 38. 00:04:32
    Static Modules and Dynamic Modules
  • Урок 39. 00:07:27
    Standard & Custom Providers
  • Урок 40. 00:05:21
    Application Config and Environments
  • Урок 41. 00:06:17
    Custom Configuration Files and Options
  • Урок 42. 00:03:28
    Logging
  • Урок 43. 00:02:17
    Exception Filters
  • Урок 44. 00:01:42
    Understanding Relations
  • Урок 45. 00:05:41
    One To Many Relation
  • Урок 46. 00:03:18
    Loading Related Entities
  • Урок 47. 00:06:11
    Associating Related Entities
  • Урок 48. 00:06:48
    Many To Many Relation
  • Урок 49. 00:07:42
    Query Builder Introduction
  • Урок 50. 00:08:52
    Joins And Aggregation with Query Builder
  • Урок 51. 00:08:57
    Filtering Data Using Query Builder
  • Урок 52. 00:08:46
    Pagination Using Query Builder
  • Урок 53. 00:12:29
    Updating, Deleting, Modifying Relations using QB
  • Урок 54. 00:04:15
    One to One Relation
  • Урок 55. 00:03:39
    Introduction to Authentication
  • Урок 56. 00:07:33
    Local Passport Strategy
  • Урок 57. 00:06:29
    Logging In - Passport Strategy with a Nest Guard
  • Урок 58. 00:04:22
    JWT - JSON Web Tokens Introduction
  • Урок 59. 00:07:15
    JWT - Generating Token
  • Урок 60. 00:06:00
    JWT - Strategy & Guard - Authenticating with JWT Token
  • Урок 61. 00:02:27
    Hashing Passwords with Bcrypt
  • Урок 62. 00:03:51
    Custom CurrentUser Decorator
  • Урок 63. 00:11:17
    User Registration
  • Урок 64. 00:08:49
    Only Authenticated Users Can Create Events
  • Урок 65. 00:06:22
    Only The Owners Can Edit or Delete Events
  • Урок 66. 00:01:51
    Interceptors and Serialization
  • Урок 67. 00:05:33
    Serializing Data
  • Урок 68. 00:03:38
    Serializing Nested Objects
  • Урок 69. 00:01:54
    (Practical) Building Full Events API
  • Урок 70. 00:05:44
    Relations Between Entities
  • Урок 71. 00:06:34
    Getting Event Attendees
  • Урок 72. 00:07:51
    Getting Events Organized by User
  • Урок 73. 00:07:37
    Current User Event Attendance - the Business Logic
  • Урок 74. 00:09:19
    Current User Event Attendance - the Controller
  • Урок 75. 00:14:44
    Events Refactoring
  • Урок 76. 00:06:48
    Manual Testing with Postman
  • Урок 77. 00:02:00
    Introduction to Automated Testing
  • Урок 78. 00:04:34
    Introduction to Jest
  • Урок 79. 00:06:39
    Basic Unit Test and Code Coverage
  • Урок 80. 00:20:59
    Test Grouping, Spies, Mocks, Setup and Teardown
  • Урок 81. 00:04:57
    Nest Testing Utilities
  • Урок 82. 00:06:15
    Complex Unit Tests Part 1
  • Урок 83. 00:09:43
    Complex Unit Tests Part 2
  • Урок 84. 00:06:07
    Complex Unit Tests Part 3
  • Урок 85. 00:07:33
    Introduction to E2E Testing
  • Урок 86. 00:08:50
    E2E Tests with Data Fixtures
  • Урок 87. 00:09:03
    Exploring E2E Tests
  • Урок 88. 00:09:23
    Dealing with Big E2E Test Suites
  • Урок 89. 00:06:50
    Upgrade Guide for Existing Students Nest 7 to Nest 9
  • Урок 90. 00:02:39
    What is GraphQL?
  • Урок 91. 00:04:49
    How Does GraphQL API Work?
  • Урок 92. 00:03:49
    REST vs GraphQL APIs!
  • Урок 93. 00:07:10
    Setting Up and Configuring a GraphQL Module
  • Урок 94. 00:14:06
    First Resolver, Query and Type!
  • Урок 95. 00:08:30
    Nullable Fields & Nested Objects on Types
  • Урок 96. 00:07:39
    Query Arguments
  • Урок 97. 00:07:49
    Handling Errors Using Exception Filter
  • Урок 98. 00:10:04
    Mutations & Input Types (How to Make Changes Using GQL)
  • Урок 99. 00:06:02
    Input Types & Data Validation
  • Урок 100. 00:08:35
    Resolving Nested Objects & Lazy Database Relations
  • Урок 101. 00:07:05
    Field Resolvers
  • Урок 102. 00:05:03
    Working with Enums in GraphQL
  • Урок 103. 00:08:23
    Editing Data in GraphQL (Edit Input Types)
  • Урок 104. 00:02:51
    Not All Fields Should Change - Using Partial/Omit
  • Урок 105. 00:08:56
    Deleting in GraphQL
  • Урок 106. 00:15:11
    Course, Subject and Teacher Resolvers
  • Урок 107. 00:09:21
    Authorization in GraphQL
  • Урок 108. 00:04:55
    Authentication Refactoring Visualized
  • Урок 109. 00:05:35
    Extract Authentication Logic Into the AuthService (Reusability)
  • Урок 110. 00:08:31
    Authentication Resolver - Logging In using GraphQL
  • Урок 111. 00:08:32
    Getting Current User in GQL & Me Resolver
  • Урок 112. 00:01:40
    Refactoring User Registration Introduction
  • Урок 113. 00:08:31
    Moving of User Creation into the UserService
  • Урок 114. 00:10:46
    Creating an "Identical Password" Custom Validator
  • Урок 115. 00:14:50
    Checking if the User Already Exists Using a Validator
  • Урок 116. 00:06:39
    User Registration Mutation in GraphQL
  • Урок 117. 00:12:55
    Refactoring Pagination For GraphQL using Tests & Advanced TS Types
  • Урок 118. 00:05:37
    Paginated GraphQL Query Results