Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай NestJS Masterclass - NodeJS Framework Backend Development, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:03:16
    NestJS Masterclass Introduction
  2. Урок 2. 00:01:15
    What Will We Build in This Course
  3. Урок 3. 00:09:13
    What is NestJS
  4. Урок 4. 00:02:30
    Setting Up The Development Enviroment
  5. Урок 5. 00:05:19
    Installing NestJS CLI
  6. Урок 6. 00:09:22
    Creating Our First NestJs Application
  7. Урок 7. 00:01:23
    Boilerplate Code In NestJs
  8. Урок 8. 00:01:55
    Best Learning Path For The Course
  9. Урок 9. 00:08:00
    What are Modules?
  10. Урок 10. 00:03:59
    How NestJS Bootstraps (main.ts)
  11. Урок 11. 00:06:03
    Understanding the app Module
  12. Урок 12. 00:09:57
    Creating a New users Module
  13. Урок 13. 00:16:28
    What is a REST API
  14. Урок 14. 00:06:49
    Setting Up Postman and httpYac
  15. Урок 15. 00:08:27
    Creating Controllers
  16. Урок 16. 00:05:02
    Working With Routing Decorators
  17. Урок 17. 00:13:38
    Params, Query and Body
  18. Урок 18. 00:04:53
    Additional Request Components
  19. Урок 19. 00:03:55
    Providers in NestJS
  20. Урок 20. 00:06:03
    What are Pipes?
  21. Урок 21. 00:03:39
    Validation and Transformation Needs
  22. Урок 22. 00:05:46
    Validating Params with Built-in Pipes
  23. Урок 23. 00:05:04
    Validating Query Params
  24. Урок 24. 00:02:59
    Introduction to DTO
  25. Урок 25. 00:10:13
    Creating Our First DTO
  26. Урок 26. 00:07:42
    Connecting DTO to Route Method
  27. Урок 27. 00:05:31
    Global Pipes and Avoiding Malicious Request
  28. Урок 28. 00:03:02
    Converting to an Instance of DTO
  29. Урок 29. 00:05:53
    Using DTOs with Params
  30. Урок 30. 00:07:06
    Using Mapped Types To Avoid Code Duplication
  31. Урок 31. 00:10:22
    Introduction To Inversion Of Control
  32. Урок 32. 00:09:18
    Dependency Injection In NestJS
  33. Урок 33. 00:04:48
    Create a users Service
  34. Урок 34. 00:05:23
    findall Users Method
  35. Урок 35. 00:01:27
    findOneById Users Method
  36. Урок 36. 00:00:52
    Practice: Create a Posts Module
  37. Урок 37. 00:05:30
    Solution: Create a Posts Module
  38. Урок 38. 00:02:07
    Types Of Dependencies
  39. Урок 39. 00:04:03
    Create a GET Posts Route With DTO
  40. Урок 40. 00:01:51
    Return Posts From Posts Service
  41. Урок 41. 00:04:28
    Use Users Service Inside Posts Service
  42. Урок 42. 00:00:34
    Practice: Create an Auth Module
  43. Урок 43. 00:02:06
    Solution: Create an Auth Module
  44. Урок 44. 00:08:57
    Circular Dependency
  45. Урок 45. 00:05:40
    Documentation With NestJS
  46. Урок 46. 00:01:34
    Open API Specification
  47. Урок 47. 00:04:28
    Enabling Swagger in NestJS
  48. Урок 48. 00:07:19
    Adding Configuration Methods to Swagger
  49. Урок 49. 00:09:47
    Documenting GET users
  50. Урок 50. 00:03:05
    Practice: POST Endpoint and DTO For Posts Controller
  51. Урок 51. 00:07:05
    Solution: POST Endpoint and DTO For Posts Controller
  52. Урок 52. 00:07:19
    Adding Validations To CreatePostDto
  53. Урок 53. 00:06:08
    Working With Nested DTOs
  54. Урок 54. 00:07:38
    Testing Validation
  55. Урок 55. 00:13:19
    Using Swagger For Documenting CreatePostDto
  56. Урок 56. 00:11:06
    Mapped Types Using Swagger
  57. Урок 57. 00:04:45
    Getting Started With Compodoc
  58. Урок 58. 00:05:48
    Compodoc Coverage And JSDocs
  59. Урок 59. 00:04:37
    Working with Databases In NestJS
  60. Урок 60. 00:06:54
    What is an ORM?
  61. Урок 61. 00:05:26
    Installing PostgreSQL Locally
  62. Урок 62. 00:03:07
    Adding psql to PATH
  63. Урок 63. 00:07:27
    Connecting NestJS to PostgreSQL
  64. Урок 64. 00:03:30
    Using Async Configuration
  65. Урок 65. 00:06:17
    Theoretical Understanding of the Repository Pattern
  66. Урок 66. 00:06:55
    Creating Our First Entity - user.entity
  67. Урок 67. 00:08:19
    Expanding Entity Definition
  68. Урок 68. 00:16:16
    Creating First Repository
  69. Урок 69. 00:00:34
    Practice: Creating Post Entity
  70. Урок 70. 00:10:29
    Solution: Creating Post Entity
  71. Урок 71. 00:04:56
    Relationships in SQL Database
  72. Урок 72. 00:09:22
    Creating the Tags Entity
  73. Урок 73. 00:04:14
    Creating The Meta Options Entity
  74. Урок 74. 00:07:21
    Updating DTO Files
  75. Урок 75. 00:03:51
    Autoloading Entities
  76. Урок 76. 00:01:48
    One to One Relationships
  77. Урок 77. 00:04:53
    Uni-directional One To One Relationship
  78. Урок 78. 00:09:13
    Creating MetaOptions Service
  79. Урок 79. 00:15:22
    Creating Post With Relationships
  80. Урок 80. 00:05:31
    Cascade Creation with Relationships
  81. Урок 81. 00:04:28
    Querying with Eager Loading
  82. Урок 82. 00:08:52
    Deleting Related Entities
  83. Урок 83. 00:02:12
    Bi-Directional One To One Relationship
  84. Урок 84. 00:07:11
    Creating A Bi-Directional Relationship
  85. Урок 85. 00:06:12
    Cascade Delete With Bi-Directional Relationship
  86. Урок 86. 00:01:50
    One To Many Relationships
  87. Урок 87. 00:03:36
    Creating One To Many Relationship
  88. Урок 88. 00:10:34
    Create Post With Author
  89. Урок 89. 00:02:51
    Eager Loading Author
  90. Урок 90. 00:01:51
    Many To Many Relationships
  91. Урок 91. 00:00:50
    Practice: Service To Create Tags
  92. Урок 92. 00:05:14
    Solution: TagsService
  93. Урок 93. 00:02:32
    Testing Tags Service
  94. Урок 94. 00:09:21
    Uni-Directional Many To Many Relationship
  95. Урок 95. 00:02:33
    Querying Many To Many Relationship
  96. Урок 96. 00:16:12
    Updating Post With New Tags
  97. Урок 97. 00:02:44
    Deleting Post and Relationship
  98. Урок 98. 00:02:27
    Bi-Directional Many To Many Relationship
  99. Урок 99. 00:07:44
    Cascade Delete With Many To Many
  100. Урок 100. 00:07:03
    Soft Delete Tags
  101. Урок 101. 00:02:48
    Introduction To Environments
  102. Урок 102. 00:03:41
    Installing Config Module
  103. Урок 103. 00:04:11
    Using Config Service
  104. Урок 104. 00:05:47
    Confirming NODE_ENV While Testing
  105. Урок 105. 00:07:42
    Conditionally Loading Environments
  106. Урок 106. 00:05:57
    Inject Database Details
  107. Урок 107. 00:11:54
    Custom configuration Files
  108. Урок 108. 00:04:31
    Config Files With Namespaces
  109. Урок 109. 00:07:12
    Module Configuration and Partial Registration
  110. Урок 110. 00:06:46
    Validating Environment Variables
  111. Урок 111. 00:02:29
    Introduction To Exception Handling
  112. Урок 112. 00:01:06
    Built-in Http Exceptions
  113. Урок 113. 00:03:52
    Identifying Points of Failure
  114. Урок 114. 00:11:29
    Exception Handling Model Constraints
  115. Урок 115. 00:04:55
    Create User Exception Handling
  116. Урок 116. 00:05:59
    Throw a Custom Exception
  117. Урок 117. 00:00:50
    Practice: Exception Handling Post Update
  118. Урок 118. 00:07:01
    Solution: Exception Handling Post Update
  119. Урок 119. 00:04:07
    Understanding Transactions
  120. Урок 120. 00:03:14
    TypeORM QueryRunner
  121. Урок 121. 00:13:27
    Creating First Transaction
  122. Урок 122. 00:02:29
    Why Create Post Is Not a Transaction
  123. Урок 123. 00:08:16
    Creating Multiple Providers
  124. Урок 124. 00:10:19
    Updating The DTO
  125. Урок 125. 00:00:37
    Practice: Handle Exceptions For CreateManyUsers
  126. Урок 126. 00:06:15
    Solution: Handle Exceptions For CreateManyUsers
  127. Урок 127. 00:04:15
    Introduction To Pagination
  128. Урок 128. 00:13:16
    Creating Pagination Query DTO
  129. Урок 129. 00:06:25
    Adding Pagination To Query
  130. Урок 130. 00:09:11
    Pagination Module And Interface
  131. Урок 131. 00:04:11
    Using paginateQuery
  132. Урок 132. 00:10:38
    Building Response Object
  133. Урок 133. 00:09:36
    Complete Paginated Response
  134. Урок 134. 00:03:39
    Introduction To Authentication
  135. Урок 135. 00:05:21
    Hashing And Salting Passwords
  136. Урок 136. 00:06:37
    Create Hashing Providers
  137. Урок 137. 00:03:36
    Implementing Hashing Provider
  138. Урок 138. 00:12:51
    User Signup
  139. Урок 139. 00:12:22
    User SignIn Controller
  140. Урок 140. 00:08:30
    Completing the signIn Method
  141. Урок 141. 00:03:52
    Custom Response Code
  142. Урок 142. 00:07:26
    Understanding JWTs
  143. Урок 143. 00:09:34
    Adding JWT Configuration
  144. Урок 144. 00:05:55
    Generating JWT
  145. Урок 145. 00:03:59
    JWT Token Signatures
  146. Урок 146. 00:02:11
    Introducing Guards
  147. Урок 147. 00:09:22
    Creating AccessTokenGuard
  148. Урок 148. 00:05:43
    Completing AccessTokenGuard Implementation
  149. Урок 149. 00:06:46
    Testing the AccessTokenGuard
  150. Урок 150. 00:05:25
    Applying AccessTokenGuard Globally
  151. Урок 151. 00:00:31
    Practice: Validations For JWT env Variables
  152. Урок 152. 00:01:37
    Solution: Validations For JWT env Variables
  153. Урок 153. 00:05:23
    What Are Decorators
  154. Урок 154. 00:09:43
    Our First Decorator
  155. Урок 155. 00:03:16
    Authentication Guard Strategy
  156. Урок 156. 00:11:54
    Create AuthenticationGuard
  157. Урок 157. 00:18:23
    AuthenticationGuard Implemenation
  158. Урок 158. 00:04:53
    Understanding User Payload
  159. Урок 159. 00:09:34
    Create Active User Decorator
  160. Урок 160. 00:01:11
    Practice: Refactor createPostDto
  161. Урок 161. 00:10:02
    Solution: Refactor createPostDto
  162. Урок 162. 00:03:57
    Introduction To Refresh Tokens
  163. Урок 163. 00:04:58
    Refresh Token Configuration
  164. Урок 164. 00:06:10
    Generate Tokens Provider
  165. Урок 165. 00:05:26
    Generate Tokens Method
  166. Урок 166. 00:02:51
    Generate Refresh Token On SignIn
  167. Урок 167. 00:09:53
    Generate Access Token Using Refresh Token
  168. Урок 168. 00:04:55
    Create Refresh Token Endpoint
  169. Урок 169. 00:03:36
    Google Authentication Strategy
  170. Урок 170. 00:05:27
    Create Google Project
  171. Урок 171. 00:08:40
    Setting The Configuration
  172. Урок 172. 00:05:35
    Initialize Google Auth Client
  173. Урок 173. 00:07:23
    Implementation Strategy Google Authentication
  174. Урок 174. 00:05:31
    Implement Authentication With Google Token
  175. Урок 175. 00:10:39
    React App In Front-End
  176. Урок 176. 00:06:12
    createGoogleUser Method
  177. Урок 177. 00:03:24
    Complete Google Authentication
  178. Урок 178. 00:01:19
    Testing Google Authentication
  179. Урок 179. 00:03:42
    Introducing Interceptors and Serialization
  180. Урок 180. 00:04:38
    Serializing User Entity
  181. Урок 181. 00:06:06
    Global Data Interceptor
  182. Урок 182. 00:06:51
    Adding API Version
  183. Урок 183. 00:03:16
    Introduction To File Uploads
  184. Урок 184. 00:09:46
    Setup S3 And Cloudfront
  185. Урок 185. 00:10:25
    Uploads Module And Configuration
  186. Урок 186. 00:06:37
    Create Upload Entity
  187. Урок 187. 00:08:04
    Upload File Service And Controller
  188. Урок 188. 00:14:08
    UploadToAwsProvider
  189. Урок 189. 00:12:02
    Complete Uploads Service
  190. Урок 190. 00:06:02
    Testing File Uploads
  191. Урок 191. 00:01:49
    Introduction To Notification Emails
  192. Урок 192. 00:01:24
    Setup A Mailtrap Account
  193. Урок 193. 00:06:29
    Configuration For Notification Emails
  194. Урок 194. 00:09:12
    Configure NestJS Mailer
  195. Урок 195. 00:06:22
    Creating MailService
  196. Урок 196. 00:07:10
    Testing Email Service
  197. Урок 197. 00:02:09
    Enabling Inline CSS
  198. Урок 198. 00:03:25
    Introduction To Testing
  199. Урок 199. 00:01:53
    Test Settings
  200. Урок 200. 00:09:37
    Understanding Unit Tests
  201. Урок 201. 00:04:46
    Testing UsersService
  202. Урок 202. 00:06:22
    Mocking Providers
  203. Урок 203. 00:10:41
    Testing Service Method
  204. Урок 204. 00:06:15
    New Spec File For CreateUserProvider
  205. Урок 205. 00:07:35
    Mocking Repositories
  206. Урок 206. 00:04:16
    Mocking Other Providers
  207. Урок 207. 00:10:03
    Using Mock Repository To Test
  208. Урок 208. 00:02:31
    Running Tests
  209. Урок 209. 00:03:52
    What Is End To End Testing
  210. Урок 210. 00:02:03
    Test Database And Configuration
  211. Урок 211. 00:04:50
    Encapsulate App Creation Logic
  212. Урок 212. 00:06:36
    Creating First E2E Test
  213. Урок 213. 00:10:13
    Completing App Loading Lifecycle
  214. Урок 214. 00:04:10
    Encapsulate Application Bootstrap
  215. Урок 215. 00:05:28
    Introduction To Faker
  216. Урок 216. 00:03:23
    Testing Validations
  217. Урок 217. 00:05:34
    Completing All Test Cases
  218. Урок 218. 00:06:02
    Introduction To MongoDB With Mongoose
  219. Урок 219. 00:08:10
    Creating MongoDB Account
  220. Урок 220. 00:06:28
    MongoDB Configuration
  221. Урок 221. 00:09:42
    First Schema - User
  222. Урок 222. 00:07:55
    Post Schema
  223. Урок 223. 00:06:28
    Create Using Model
  224. Урок 224. 00:03:10
    Mongoose Sub Documents
  225. Урок 225. 00:07:54
    Single Sub Document
  226. Урок 226. 00:01:08
    Practice: Tags Module
  227. Урок 227. 00:05:02
    Solution: Tags Module
  228. Урок 228. 00:01:07
    Practice: Tags Service + Controller
  229. Урок 229. 00:06:00
    Solution: Tags Service + Controller
  230. Урок 230. 00:06:33
    Array Of Sub Documents
  231. Урок 231. 00:04:32
    Querying Sub Documents
  232. Урок 232. 00:04:35
    Deployment Strategy
  233. Урок 233. 00:05:12
    Creating An EC2 Instance
  234. Урок 234. 00:07:47
    Installing Node, NPM and GIT
  235. Урок 235. 00:03:52
    Installing PostgreSQL
  236. Урок 236. 00:07:58
    Installing and Configuring NGINX
  237. Урок 237. 00:03:34
    Git Clone And Install
  238. Урок 238. 00:02:50
    Create The .env file
  239. Урок 239. 00:04:27
    Understanding Migrations
  240. Урок 240. 00:09:29
    Creating and Running Migrations
  241. Урок 241. 00:07:22
    Testing Migration On EC2
  242. Урок 242. 00:05:42
    Running with PM2