Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Microservices with Node JS and React, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:00:57
    How to Get Help
  2. Урок 2. 00:03:20
    What Is a Microservice?
  3. Урок 3. 00:07:35
    Data in Microservices
  4. Урок 4. 00:05:09
    Big Problems with Data
  5. Урок 5. 00:06:54
    Sync Communication Between Services
  6. Урок 6. 00:05:20
    Event-Based Communication
  7. Урок 7. 00:09:50
    A Crazy Way of Storing Data
  8. Урок 8. 00:06:16
    Pros and Cons of Async Communication
  9. Урок 9. 00:05:45
    App Overview
  10. Урок 10. 00:04:58
    Project Setup
  11. Урок 11. 00:08:19
    Posts Service Creation
  12. Урок 12. 00:04:06
    Testing the Posts Service
  13. Урок 13. 00:08:23
    Implementing a Comments Service
  14. Урок 14. 00:03:58
    Quick Comments Test
  15. Урок 15. 00:05:01
    React Project Setup
  16. Урок 16. 00:09:55
    Building Post Submission
  17. Урок 17. 00:04:10
    Handling CORS Errors
  18. Урок 18. 00:10:05
    Fetching and Rendering Posts
  19. Урок 19. 00:08:10
    Creating Comments
  20. Урок 20. 00:07:24
    Displaying Comments
  21. Урок 21. 00:04:55
    Request Minimization Strategies
  22. Урок 22. 00:07:17
    An Async Solution
  23. Урок 23. 00:04:15
    Common Questions Around Async Events
  24. Урок 24. 00:05:15
    Event Bus Overview
  25. Урок 25. 00:05:23
    A Basic Event Bus Implementation
  26. Урок 26. 00:05:19
    Emitting Events
  27. Урок 27. 00:03:46
    Emitting Comment Creation Events
  28. Урок 28. 00:04:34
    Receiving Events
  29. Урок 29. 00:04:43
    Creating the Data Query Service
  30. Урок 30. 00:07:03
    Parsing Incoming Events
  31. Урок 31. 00:07:11
    Using the Query Service
  32. Урок 32. 00:04:47
    Adding a Simple Feature
  33. Урок 33. 00:07:44
    Issues with Comment Filtering
  34. Урок 34. 00:05:38
    A Second Approach
  35. Урок 35. 00:04:46
    How to Handle Resource Updates
  36. Урок 36. 00:04:53
    Creating the Moderation Service
  37. Урок 37. 00:04:27
    Adding Comment Moderation
  38. Урок 38. 00:05:31
    Handling Moderation
  39. Урок 39. 00:05:00
    Updating Comment Content
  40. Урок 40. 00:05:58
    A Quick Test
  41. Урок 41. 00:03:27
    Rendering Comments by Status
  42. Урок 42. 00:10:25
    Dealing with Missing Events
  43. Урок 43. 00:06:12
    Implementing Event Sync
  44. Урок 44. 00:04:17
    Event Syncing in Action
  45. Урок 45. 00:06:56
    Deployment Issues
  46. Урок 46. 00:02:56
    Why Docker?
  47. Урок 47. 00:05:48
    Why Kubernetes?
  48. Урок 48. 00:01:18
    Don't Know Docker? Watch This.
  49. Урок 49. 00:04:03
    Dockerizing the Posts Service
  50. Урок 50. 00:05:24
    Review Some Basic Commands
  51. Урок 51. 00:03:02
    Dockering Other Services
  52. Урок 52. 00:03:20
    Installing Kubernetes
  53. Урок 53. 00:09:46
    A Kubernetes Tour
  54. Урок 54. 00:02:53
    Important Kubernetes Terminology
  55. Урок 55. 00:03:12
    Notes on Config Files
  56. Урок 56. 00:06:42
    Creating a Pod
  57. Урок 57. 00:05:16
    Understanding a Pod Spec
  58. Урок 58. 00:04:45
    Common Kubectl Commands
  59. Урок 59. 00:02:27
    A Time-Saving Alias
  60. Урок 60. 00:03:29
    Introducing Deployments
  61. Урок 61. 00:06:13
    Creating a Deployment
  62. Урок 62. 00:04:37
    Common Commands Around Deployments
  63. Урок 63. 00:06:03
    Updating Deployments
  64. Урок 64. 00:05:43
    Preferred Method for Updating Deployments
  65. Урок 65. 00:04:16
    Networking With Services
  66. Урок 66. 00:07:53
    Creating a NodePort Service
  67. Урок 67. 00:05:10
    Accessing NodePort Services
  68. Урок 68. 00:03:13
    Setting Up Cluster IP Services
  69. Урок 69. 00:05:36
    Building a Deployment for the Event Bus
  70. Урок 70. 00:07:38
    Adding ClusterIP Services
  71. Урок 71. 00:04:10
    How to Communicate Between Services
  72. Урок 72. 00:06:28
    Updating Service Addresses
  73. Урок 73. 00:05:01
    Verifying Communication
  74. Урок 74. 00:09:58
    Adding Query, Moderation and Comments
  75. Урок 75. 00:05:30
    Testing Communication
  76. Урок 76. 00:05:14
    Load Balancer Services
  77. Урок 77. 00:06:40
    Load Balancers and Ingress
  78. Урок 78. 00:07:41
    Installing Ingress-Nginx
  79. Урок 79. 00:04:48
    Writing Ingress Config Files
  80. Урок 80. 00:06:17
    Hosts File Tweak
  81. Урок 81. 00:06:10
    Deploying the React App
  82. Урок 82. 00:06:56
    Unique Route Paths
  83. Урок 83. 00:06:33
    Final Route Config
  84. Урок 84. 00:03:09
    Introducing Skaffold
  85. Урок 85. 00:09:18
    Skaffold Setup
  86. Урок 86. 00:01:01
    First Time Skaffold Startup
  87. Урок 87. 00:06:31
    A Few Notes on Skaffold
  88. Урок 88. 00:15:12
    Big Ticket Items
  89. Урок 89. 00:08:54
    App Overview
  90. Урок 90. 00:03:24
    Resource Types
  91. Урок 91. 00:03:39
    Service Types
  92. Урок 92. 00:03:49
    Events and Architecture Design
  93. Урок 93. 00:04:52
    Auth Service Setup
  94. Урок 94. 00:08:16
    Auth K8s Setup
  95. Урок 95. 00:05:37
    Adding Skaffold
  96. Урок 96. 00:07:20
    Ingress-Nginx Setup
  97. Урок 97. 00:04:07
    Hosts File and Security Warning
  98. Урок 98. 00:02:52
    Note on Remote Development
  99. Урок 99. 00:06:36
    Remote Dev with Skaffold
  100. Урок 100. 00:02:44
    Google Cloud Initial Setup
  101. Урок 101. 00:04:00
    Kubernetes Cluster Creation
  102. Урок 102. 00:03:50
    Kubectl Contexts
  103. Урок 103. 00:05:04
    Initializing the GCloud SDK
  104. Урок 104. 00:04:18
    Installing the GCloud Context
  105. Урок 105. 00:04:36
    Updating the Skaffold Config
  106. Урок 106. 00:01:07
    More Skaffold Updates
  107. Урок 107. 00:05:13
    Creating a Load Balancer
  108. Урок 108. 00:06:26
    Final Config and Test
  109. Урок 109. 00:05:42
    Creating Route Handlers
  110. Урок 110. 00:04:06
    Scaffolding Routes
  111. Урок 111. 00:08:39
    Adding Validation
  112. Урок 112. 00:06:19
    Handling Validation Errors
  113. Урок 113. 00:06:08
    Surprising Complexity Around Errors
  114. Урок 114. 00:04:18
    Other Sources of Errors
  115. Урок 115. 00:04:51
    Solution for Error Handling
  116. Урок 116. 00:07:39
    Building an Error Handling Middleware
  117. Урок 117. 00:05:25
    Communicating More Info to the Error Handler
  118. Урок 118. 00:04:36
    Encoding More Information In an Error
  119. Урок 119. 00:08:18
    Subclassing for Custom Errors
  120. Урок 120. 00:03:11
    Determining Error Type
  121. Урок 121. 00:10:13
    Converting Errors to Responses
  122. Урок 122. 00:08:37
    Moving Logic Into Errors
  123. Урок 123. 00:08:35
    Verifying Our Custom Errors
  124. Урок 124. 00:10:20
    Final Error Related Code
  125. Урок 125. 00:05:02
    How to Define New Custom Errors
  126. Урок 126. 00:05:51
    Uh Oh... Async Error Handling
  127. Урок 127. 00:08:26
    Creating Databases in Kubernetes
  128. Урок 128. 00:07:54
    Connecting to MongoDB
  129. Урок 129. 00:04:26
    Understanding the Signup Flow
  130. Урок 130. 00:05:22
    Getting TypeScript and Mongoose to Cooperate
  131. Урок 131. 00:04:55
    Creating the User Model
  132. Урок 132. 00:06:02
    Type Checking User Properties
  133. Урок 133. 00:06:01
    Adding Static Properties to a Model
  134. Урок 134. 00:04:54
    Defining Extra Document Properties
  135. Урок 135. 00:03:53
    What's That Angle Bracket For?
  136. Урок 136. 00:06:48
    User Creation
  137. Урок 137. 00:07:27
    Proper Error Handling
  138. Урок 138. 00:04:59
    Reminder on Password Hashing
  139. Урок 139. 00:06:58
    Adding Password Hashing
  140. Урок 140. 00:02:55
    Comparing Hashed Password
  141. Урок 141. 00:05:54
    Mongoose Pre-Save Hooks
  142. Урок 142. 00:08:59
    Fundamental Authentication Strategies
  143. Урок 143. 00:07:33
    Huge Issues with Authentication Strategies
  144. Урок 144. 00:02:59
    So Which Option?
  145. Урок 145. 00:08:27
    Solving Issues with Option #2
  146. Урок 146. 00:06:22
    Reminder on Cookies vs JWT's
  147. Урок 147. 00:11:01
    Microservices Auth Requirements
  148. Урок 148. 00:09:59
    Issues with JWT's and Server Side Rendering
  149. Урок 149. 00:04:52
    Cookies and Encryption
  150. Урок 150. 00:03:12
    Adding Session Support
  151. Урок 151. 00:08:30
    Generating a JWT
  152. Урок 152. 00:04:58
    JWT Signing Keys
  153. Урок 153. 00:02:14
    Securely Storing Secrets with Kubernetes
  154. Урок 154. 00:09:19
    Creating and Accessing Secrets
  155. Урок 155. 00:05:19
    Accessing Env Variables in a Pod
  156. Урок 156. 00:04:42
    Common Response Properties
  157. Урок 157. 00:10:40
    Formatting JSON Properties
  158. Урок 158. 00:07:50
    The Signin Flow
  159. Урок 159. 00:05:34
    Common Request Validation Middleware
  160. Урок 160. 00:06:50
    Sign In Logic
  161. Урок 161. 00:01:54
    Quick Sign In Test
  162. Урок 162. 00:03:02
    Current User Handler
  163. Урок 163. 00:08:56
    Returning the Current User
  164. Урок 164. 00:02:49
    Signing Out
  165. Урок 165. 00:06:56
    Creating a Current User Middleware
  166. Урок 166. 00:07:47
    Augmenting Type Definitions
  167. Урок 167. 00:07:47
    Requiring Auth for Route Access
  168. Урок 168. 00:04:29
    Scope of Testing
  169. Урок 169. 00:04:33
    Testing Goals
  170. Урок 170. 00:07:52
    Testing Architecture
  171. Урок 171. 00:02:55
    Index to App Refactor
  172. Урок 172. 00:03:34
    A Few Dependencies
  173. Урок 173. 00:08:13
    Test Environment Setup
  174. Урок 174. 00:06:25
    Our First Test
  175. Урок 175. 00:01:32
    An Important Note
  176. Урок 176. 00:05:14
    Testing Invalid Input
  177. Урок 177. 00:01:47
    Requiring Unique Emails
  178. Урок 178. 00:05:44
    Changing Node Env During Tests
  179. Урок 179. 00:06:27
    Tests Around Sign In Functionality
  180. Урок 180. 00:04:32
    Testing Sign Out
  181. Урок 181. 00:05:20
    Issues with Cookies During Testing
  182. Урок 182. 00:03:04
    Easy Auth Solution
  183. Урок 183. 00:07:13
    Auth Helper Function
  184. Урок 184. 00:01:45
    Testing Non-Authed Requests
  185. Урок 185. 00:02:12
    Starting the React App
  186. Урок 186. 00:03:39
    Reminder on Server Side Rendering
  187. Урок 187. 00:05:25
    Basics of Next JS
  188. Урок 188. 00:04:29
    Building a Next Image
  189. Урок 189. 00:10:13
    Running Next in Kubernetes
  190. Урок 190. 00:04:27
    Note on File Change Detection
  191. Урок 191. 00:05:10
    Adding Global CSS
  192. Урок 192. 00:03:12
    Adding a Sign Up Form
  193. Урок 193. 00:03:43
    Handling Email and Password Inputs
  194. Урок 194. 00:05:13
    Successful Account Signup
  195. Урок 195. 00:06:54
    Handling Validation Errors
  196. Урок 196. 00:07:00
    The useRequest Hook
  197. Урок 197. 00:03:41
    Using the useRequest Hook
  198. Урок 198. 00:05:39
    An onSuccess Callback
  199. Урок 199. 00:06:48
    Overview on Server Side Rendering
  200. Урок 200. 00:05:08
    Fetching Data During SSR
  201. Урок 201. 00:09:01
    Why the Error?
  202. Урок 202. 00:07:05
    Two Possible Solutions
  203. Урок 203. 00:07:46
    Cross Namespace Service Communication
  204. Урок 204. 00:06:47
    When is GetInitialProps Called?
  205. Урок 205. 00:02:02
    On the Server or the Browser
  206. Урок 206. 00:08:24
    Specifying the Host
  207. Урок 207. 00:04:02
    Passing Through the Cookies
  208. Урок 208. 00:07:06
    A Reusable API Client
  209. Урок 209. 00:02:02
    Content on the Landing Page
  210. Урок 210. 00:03:13
    The Sign In Form
  211. Урок 211. 00:05:01
    A Reusable Header
  212. Урок 212. 00:02:12
    Moving GetInitialProps
  213. Урок 213. 00:06:43
    Issues with Custom App GetInitialProps
  214. Урок 214. 00:06:09
    Handling Multiple GetInitialProps
  215. Урок 215. 00:03:04
    Passing Props Through
  216. Урок 216. 00:05:06
    Building the Header
  217. Урок 217. 00:05:59
    Conditionally Showing Links
  218. Урок 218. 00:04:37
    Signing Out
  219. Урок 219. 00:04:35
    Shared Logic Between Services
  220. Урок 220. 00:04:47
    Options for Code Sharing
  221. Урок 221. 00:04:28
    NPM Organizations
  222. Урок 222. 00:04:07
    Publishing NPM Modules
  223. Урок 223. 00:07:35
    Project Setup
  224. Урок 224. 00:07:27
    An Easy Publish Command
  225. Урок 225. 00:07:30
    Relocating Shared Code
  226. Урок 226. 00:05:18
    Updating Import Statements
  227. Урок 227. 00:05:35
    Updating the Common Module
  228. Урок 228. 00:03:04
    Ticketing Service Overview
  229. Урок 229. 00:05:26
    Project Setup
  230. Урок 230. 00:06:06
    Running the Ticket Service
  231. Урок 231. 00:08:15
    Mongo Connection URI
  232. Урок 232. 00:01:48
    Quick Auth Update
  233. Урок 233. 00:04:20
    Test-First Approach
  234. Урок 234. 00:04:57
    Creating the Router
  235. Урок 235. 00:08:05
    Adding Auth Protection
  236. Урок 236. 00:07:11
    Faking Authentication During Tests
  237. Урок 237. 00:05:40
    Building a Session
  238. Урок 238. 00:04:13
    Testing Request Validation
  239. Урок 239. 00:04:10
    Validating Title and Price
  240. Урок 240. 00:07:13
    Reminder on Mongoose with TypeScript
  241. Урок 241. 00:03:50
    Defining the Ticket Model
  242. Урок 242. 00:08:22
    Creation via Route Handler
  243. Урок 243. 00:06:53
    Testing Show Routes
  244. Урок 244. 00:05:30
    Unexpected Failure!
  245. Урок 245. 00:08:58
    What's that Error?!
  246. Урок 246. 00:05:12
    Better Error Logging
  247. Урок 247. 00:06:32
    Complete Index Route Implementation
  248. Урок 248. 00:06:16
    Ticket Updating
  249. Урок 249. 00:04:16
    Handling Updates
  250. Урок 250. 00:06:50
    Permission Checking
  251. Урок 251. 00:09:05
    Final Update Changes
  252. Урок 252. 00:05:37
    Manual Testing
  253. Урок 253. 00:02:51
    What Now?
  254. Урок 254. 00:04:35
    Three Important Items
  255. Урок 255. 00:06:26
    Creating a NATS Streaming Deployment
  256. Урок 256. 00:09:54
    Big Notes on NATS Streaming
  257. Урок 257. 00:07:32
    Building a NATS Test Project
  258. Урок 258. 00:04:41
    Port-Forwarding with Kubectl
  259. Урок 259. 00:06:22
    Publishing Events
  260. Урок 260. 00:06:56
    Listening For Data
  261. Урок 261. 00:06:57
    Accessing Event Data
  262. Урок 262. 00:04:49
    Client ID Generation
  263. Урок 263. 00:07:29
    Queue Groups
  264. Урок 264. 00:09:53
    Manual Ack Mode
  265. Урок 265. 00:09:46
    Client Health Checks
  266. Урок 266. 00:06:43
    Graceful Client Shutdown
  267. Урок 267. 00:12:57
    Core Concurrency Issues
  268. Урок 268. 00:08:09
    Common Questions
  269. Урок 269. 00:16:43
    [Optional] More Possible Concurrency Solutions
  270. Урок 270. 00:20:06
    Solving Concurrency Issues
  271. Урок 271. 00:09:41
    Concurrency Control with the Tickets App
  272. Урок 272. 00:04:36
    Event Redelivery
  273. Урок 273. 00:09:00
    Durable Subscriptions
  274. Урок 274. 00:04:34
    Reusable NATS Listeners
  275. Урок 275. 00:09:28
    The Listener Abstract Class
  276. Урок 276. 00:05:54
    Extending the Listener
  277. Урок 277. 00:03:19
    Quick Refactor
  278. Урок 278. 00:05:29
    Leveraging TypeScript for Listener Validation
  279. Урок 279. 00:03:30
    Subjects Enum
  280. Урок 280. 00:02:27
    Custom Event Interface
  281. Урок 281. 00:07:23
    Enforcing Listener Subjects
  282. Урок 282. 00:03:55
    Enforcing Data Types
  283. Урок 283. 00:02:50
    Where Does this Get Used?
  284. Урок 284. 00:08:12
    Custom Publisher
  285. Урок 285. 00:03:51
    Using the Custom Publisher
  286. Урок 286. 00:04:29
    Awaiting Event Publication
  287. Урок 287. 00:06:27
    Common Event Definitions Summary
  288. Урок 288. 00:07:36
    Updating the Common Module
  289. Урок 289. 00:02:11
    Restarting NATS
  290. Урок 290. 00:03:49
    Publishing Ticket Creation
  291. Урок 291. 00:03:20
    More on Publishing
  292. Урок 292. 00:05:25
    NATS Client Singleton
  293. Урок 293. 00:04:58
    Remember Mongoose?
  294. Урок 294. 00:09:05
    Singleton Implementation
  295. Урок 295. 00:04:29
    Accessing the NATS Client
  296. Урок 296. 00:06:56
    Graceful Shutdown
  297. Урок 297. 00:03:24
    Successful Listen!
  298. Урок 298. 00:04:29
    Ticket Update Publishing
  299. Урок 299. 00:07:04
    Failed Event Publishing
  300. Урок 300. 00:06:03
    Handling Publish Failures
  301. Урок 301. 00:03:53
    Fixing a Few Tests
  302. Урок 302. 00:05:36
    Redirecting Imports
  303. Урок 303. 00:09:10
    Providing a Mock Implementation
  304. Урок 304. 00:02:13
    Test-Suite Wide Mocks
  305. Урок 305. 00:09:14
    Ensuring Mock Invocations
  306. Урок 306. 00:08:02
    NATS Env Variables
  307. Урок 307. 00:05:03
    The Orders Service
  308. Урок 308. 00:04:40
    Scaffolding the Orders Service
  309. Урок 309. 00:07:34
    A Touch More Setup
  310. Урок 310. 00:01:55
    Ingress Routing Rules
  311. Урок 311. 00:09:56
    Scaffolding a Few Route Handlers
  312. Урок 312. 00:06:44
    Subtle Service Coupling
  313. Урок 313. 00:06:50
    Associating Orders and Tickets
  314. Урок 314. 00:08:53
    Order Model Setup
  315. Урок 315. 00:05:57
    The Need for an Enum
  316. Урок 316. 00:08:32
    Creating an Order Status Enum
  317. Урок 317. 00:02:59
    More on Mongoose Refs
  318. Урок 318. 00:07:10
    Defining the Ticket Model
  319. Урок 319. 00:05:46
    Order Creation Logic
  320. Урок 320. 00:06:11
    Finding Reserved Tickets
  321. Урок 321. 00:07:38
    Convenience Document Methods
  322. Урок 322. 00:06:06
    Order Expiration Times
  323. Урок 323. 00:02:37
    Test Suite Setup
  324. Урок 324. 00:06:09
    Asserting Tickets Exist
  325. Урок 325. 00:05:06
    Asserting Reserved Tickets
  326. Урок 326. 00:04:10
    Testing the Success Case
  327. Урок 327. 00:05:25
    Fetching a User's Orders
  328. Урок 328. 00:12:24
    A Slightly Complicated Test
  329. Урок 329. 00:04:37
    Fetching Individual Orders
  330. Урок 330. 00:07:18
    Does Fetching Work?
  331. Урок 331. 00:04:33
    Cancelling an Order
  332. Урок 332. 00:09:13
    Can We Cancel?
  333. Урок 333. 00:04:44
    Orders Service Events
  334. Урок 334. 00:09:24
    Creating the Events
  335. Урок 335. 00:03:14
    Implementing the Publishers
  336. Урок 336. 00:05:04
    Publishing the Order Creation
  337. Урок 337. 00:02:34
    Publishing Order Cancellation
  338. Урок 338. 00:05:34
    Testing Event Publishing
  339. Урок 339. 00:02:13
    Time for Listeners!
  340. Урок 340. 00:01:55
    Reminder on Listeners
  341. Урок 341. 00:03:40
    Blueprint for Listeners
  342. Урок 342. 00:05:27
    A Few More Reminders
  343. Урок 343. 00:02:18
    Simple onMessage Implementation
  344. Урок 344. 00:05:45
    ID Adjustment
  345. Урок 345. 00:04:33
    Ticket Updated Listener Implementation
  346. Урок 346. 00:02:45
    Initializing the Listeners
  347. Урок 347. 00:03:17
    A Quick Manual Test
  348. Урок 348. 00:13:00
    Clear Concurrency Issues
  349. Урок 349. 00:06:42
    Reminder on Versioning Records
  350. Урок 350. 00:05:38
    Optimistic Concurrency Control
  351. Урок 351. 00:03:47
    Mongoose Update-If-Current
  352. Урок 352. 00:04:03
    Implementing OCC with Mongoose
  353. Урок 353. 00:09:08
    Testing OCC
  354. Урок 354. 00:03:46
    One More Test
  355. Урок 355. 00:06:30
    Who Updates Versions?
  356. Урок 356. 00:03:00
    Including Versions in Events
  357. Урок 357. 00:03:56
    Updating Tickets Event Definitions
  358. Урок 358. 00:07:15
    Applying a Version Query
  359. Урок 359. 00:04:32
    Did it Work?
  360. Урок 360. 00:05:43
    Abstracted Query Method
  361. Урок 361. 00:18:35
    [Optional] Versioning Without Update-If-Current
  362. Урок 362. 00:04:56
    Testing Listeners
  363. Урок 363. 00:09:26
    A Complete Listener Test
  364. Урок 364. 00:02:10
    Testing the Ack Call
  365. Урок 365. 00:08:22
    Testing the Ticket Updated Listener
  366. Урок 366. 00:04:50
    Success Case Testing
  367. Урок 367. 00:04:52
    Out-Of-Order Events
  368. Урок 368. 00:03:40
    The Next Few Videos
  369. Урок 369. 00:06:37
    Fixing a Few Tests
  370. Урок 370. 00:01:48
    Listeners in the Tickets Service
  371. Урок 371. 00:05:00
    Building the Listener
  372. Урок 372. 00:05:29
    Strategies for Locking a Ticket
  373. Урок 373. 00:03:43
    Reserving a Ticket
  374. Урок 374. 00:07:01
    Setup for Testing Reservation
  375. Урок 375. 00:04:30
    Test Implementation
  376. Урок 376. 00:06:15
    Missing Update Event
  377. Урок 377. 00:06:55
    Private vs Protected Properties
  378. Урок 378. 00:06:43
    Publishing While Listening
  379. Урок 379. 00:09:50
    Mock Function Arguments
  380. Урок 380. 00:06:52
    Order Cancelled Listener
  381. Урок 381. 00:07:29
    A Lightning-Quick Test
  382. Урок 382. 00:02:22
    Don't Forget to Listen!
  383. Урок 383. 00:06:16
    Rejecting Edits of Reserved Tickets
  384. Урок 384. 00:02:39
    The Expiration Service
  385. Урок 385. 00:07:56
    Expiration Options
  386. Урок 386. 00:06:15
    Initial Setup
  387. Урок 387. 00:07:45
    A Touch of Kubernetes Setup
  388. Урок 388. 00:02:33
    File Sync Setup
  389. Урок 389. 00:03:43
    Listener Creation
  390. Урок 390. 00:03:57
    What's Bull All About?
  391. Урок 391. 00:09:08
    Creating a Queue
  392. Урок 392. 00:05:11
    Queueing a Job on Event Arrival
  393. Урок 393. 00:03:18
    Testing Job Processing
  394. Урок 394. 00:05:24
    Delaying Job Processing
  395. Урок 395. 00:03:51
    Defining the Expiration Complete Event
  396. Урок 396. 00:06:28
    Publishing an Event on Job Processing
  397. Урок 397. 00:06:01
    Handling an Expiration Event
  398. Урок 398. 00:05:38
    Emitting the Order Cancelled Event
  399. Урок 399. 00:05:53
    Testing the Expiration Complete Listener
  400. Урок 400. 00:07:21
    A Touch More Testing
  401. Урок 401. 00:02:21
    Listening for Expiration
  402. Урок 402. 00:02:12
    The Payments Service
  403. Урок 403. 00:08:47
    Initial Setup
  404. Урок 404. 00:05:58
    Replicated Fields
  405. Урок 405. 00:07:31
    Another Order Model!
  406. Урок 406. 00:01:18
    Update-If-Current
  407. Урок 407. 00:04:08
    Replicating Orders
  408. Урок 408. 00:06:13
    Testing Order Creation
  409. Урок 409. 00:05:40
    Marking an Order as Cancelled
  410. Урок 410. 00:06:43
    Cancelled Testing
  411. Урок 411. 00:03:55
    Starting the Listeners
  412. Урок 412. 00:05:11
    Payments Flow with Stripe
  413. Урок 413. 00:08:33
    Implementing the Create Charge Handler
  414. Урок 414. 00:04:04
    Validating Order Payment
  415. Урок 415. 00:07:00
    Testing Order Validation Before Payment
  416. Урок 416. 00:05:11
    Testing Same-User Validation
  417. Урок 417. 00:03:59
    Stripe Setup
  418. Урок 418. 00:03:21
    Creating a Stripe Secret
  419. Урок 419. 00:06:10
    Creating a Charge with Stripe
  420. Урок 420. 00:06:36
    Manual Testing of Payments
  421. Урок 421. 00:06:28
    Automated Payment Testing
  422. Урок 422. 00:04:24
    Mocked Stripe Client
  423. Урок 423. 00:09:17
    A More Realistic Test Setup
  424. Урок 424. 00:06:16
    Realistic Test Implementation
  425. Урок 425. 00:07:19
    Tying an Order and Charge Together
  426. Урок 426. 00:06:14
    Testing Payment Creation
  427. Урок 427. 00:06:32
    Publishing a Payment Created Event
  428. Урок 428. 00:03:19
    More on Publishing
  429. Урок 429. 00:06:19
    Marking an Order as Complete
  430. Урок 430. 00:01:02
    Don't Cancel Completed Orders!
  431. Урок 431. 00:06:17
    A Few More Pages
  432. Урок 432. 00:06:10
    Reminder on Data Fetching with Next
  433. Урок 433. 00:05:44
    Two Quick Fixes
  434. Урок 434. 00:03:44
    Scaffolding a Form
  435. Урок 435. 00:06:30
    Sanitizing Price Input
  436. Урок 436. 00:06:45
    Ticket Creation
  437. Урок 437. 00:07:42
    Listing All Tickets
  438. Урок 438. 00:07:08
    Linking to Wildcard Routes
  439. Урок 439. 00:07:26
    Creating an Order
  440. Урок 440. 00:04:17
    Programmatic Navigation to Wildcard Routes
  441. Урок 441. 00:10:55
    The Expiration Timer
  442. Урок 442. 00:01:02
    Displaying the Expiration
  443. Урок 443. 00:03:07
    Showing a Stripe Payment Form
  444. Урок 444. 00:04:24
    Configuring Stripe
  445. Урок 445. 00:01:59
    Test Credit Card Numbers
  446. Урок 446. 00:09:25
    Paying for an Order
  447. Урок 447. 00:02:28
    Filtering Reserved Tickets
  448. Урок 448. 00:01:48
    Header Links
  449. Урок 449. 00:06:21
    Rendering a List of Orders
  450. Урок 450. 00:03:40
    Development Workflow
  451. Урок 451. 00:06:06
    Git Repository Approaches
  452. Урок 452. 00:07:12
    Creating a GitHub Action
  453. Урок 453. 00:02:43
    Adding a CI Test Script
  454. Урок 454. 00:04:49
    Running Tests on PR Creation
  455. Урок 455. 00:05:49
    Output of Failing Tests
  456. Урок 456. 00:07:29
    Running Tests in Parallel
  457. Урок 457. 00:03:02
    Verifying a Test Run
  458. Урок 458. 00:05:45
    Selective Test Execution
  459. Урок 459. 00:07:41
    Deployment Options
  460. Урок 460. 00:02:40
    Creating a Hosted Cluster
  461. Урок 461. 00:03:33
    Reminder on Kubernetes Context
  462. Урок 462. 00:03:57
    Reminder on Swapping Contexts
  463. Урок 463. 00:04:05
    The Deployment Plan
  464. Урок 464. 00:08:41
    Building an Image in an Action
  465. Урок 465. 00:02:31
    Testing the Image Build
  466. Урок 466. 00:07:19
    Restarting the Deployment
  467. Урок 467. 00:03:28
    Applying Kubernetes Manifests
  468. Урок 468. 00:04:24
    Prod vs Dev Manifest Files
  469. Урок 469. 00:03:40
    Manual Secret Creation
  470. Урок 470. 00:05:32
    Don't Forget Ingress-Nginx!
  471. Урок 471. 00:02:52
    Testing Automated Deployment
  472. Урок 472. 00:07:13
    Additional Deploy Files
  473. Урок 473. 00:06:08
    A Successful Deploy!
  474. Урок 474. 00:03:11
    Buying a Domain Name
  475. Урок 475. 00:05:28
    Configuring the Domain Name
  476. Урок 476. 00:01:59
    I Really Hope This Works
  477. Урок 477. 00:04:37
    Next Steps
  478. Урок 478. 00:03:44
    Why Use Docker?
  479. Урок 479. 00:02:54
    What is Docker?
  480. Урок 480. 00:01:58
    Docker for Mac / Windows
  481. Урок 481. 00:05:04
    Using the Docker Client
  482. Урок 482. 00:08:31
    But Really... What's a Container?
  483. Урок 483. 00:02:45
    How's Docker Running on Your Computer?
  484. Урок 484. 00:01:55
    Docker Run in Detail
  485. Урок 485. 00:05:13
    Overriding Default Commands
  486. Урок 486. 00:04:10
    Listing Running Containers
  487. Урок 487. 00:05:17
    Container Lifecycle
  488. Урок 488. 00:03:44
    Restarting Stopped Containers
  489. Урок 489. 00:01:40
    Removing Stopped Containers
  490. Урок 490. 00:02:34
    Retrieving Output Logs
  491. Урок 491. 00:05:22
    Stopping Containers
  492. Урок 492. 00:04:17
    Multi-Command Containers
  493. Урок 493. 00:02:54
    Executing Commands in Running Containers
  494. Урок 494. 00:04:36
    The Purpose of the 'it' Flag
  495. Урок 495. 00:04:07
    Getting a Command Prompt in a Container
  496. Урок 496. 00:02:14
    Starting with a Shell
  497. Урок 497. 00:03:10
    Container Isolation
  498. Урок 498. 00:02:37
    Creating Docker Images
  499. Урок 499. 00:04:52
    Building a Dockerfile
  500. Урок 500. 00:02:42
    Dockerfile Teardown
  501. Урок 501. 00:05:41
    What's a Base Image?
  502. Урок 502. 00:11:10
    The Build Process in Detail
  503. Урок 503. 00:03:25
    A Brief Recap
  504. Урок 504. 00:07:03
    Rebuilds with Cache
  505. Урок 505. 00:04:27
    Tagging an Image
  506. Урок 506. 00:05:02
    Manual Image Generation with Docker Commit
  507. Урок 507. 00:02:36
    Project Outline
  508. Урок 508. 00:05:04
    Node Server Setup
  509. Урок 509. 00:05:13
    A Few Planned Errors
  510. Урок 510. 00:07:51
    Base Image Issues
  511. Урок 511. 00:03:19
    A Few Missing Files
  512. Урок 512. 00:04:51
    Copying Build Files
  513. Урок 513. 00:07:27
    Container Port Forwarding
  514. Урок 514. 00:07:53
    Specifying a Working Directory
  515. Урок 515. 00:04:17
    Unnecessary Rebuilds
  516. Урок 516. 00:04:59
    Minimizing Cache Busting and Rebuilds
  517. Урок 517. 00:01:05
    How to Get Help
  518. Урок 518. 00:06:20
    TypeScript Overview
  519. Урок 519. 00:08:00
    Environment Setup
  520. Урок 520. 00:04:44
    A First App
  521. Урок 521. 00:05:04
    Executing Typescript Code
  522. Урок 522. 00:03:36
    One Quick Change
  523. Урок 523. 00:07:23
    Catching Errors with TypeScript
  524. Урок 524. 00:05:16
    Catching More Errors!
  525. Урок 525. 00:03:37
    Do Not Skip - Course Overview
  526. Урок 526. 00:05:13
    Types
  527. Урок 527. 00:05:54
    More on Types
  528. Урок 528. 00:05:16
    Examples of Types
  529. Урок 529. 00:00:50
    Where Do We Use Types?
  530. Урок 530. 00:02:04
    Type Annotations and Inference
  531. Урок 531. 00:04:54
    Annotations With Variables
  532. Урок 532. 00:06:54
    Object Literal Annotations
  533. Урок 533. 00:05:57
    Annotations Around Functions
  534. Урок 534. 00:03:52
    Understanding Inference
  535. Урок 535. 00:07:48
    The Any Type
  536. Урок 536. 00:01:50
    Fixing the "Any" Type
  537. Урок 537. 00:03:06
    Delayed Initialization
  538. Урок 538. 00:04:38
    When Inference Doesn't Work
  539. Урок 539. 00:04:57
    More on Annotations Around Functions
  540. Урок 540. 00:06:09
    Inference Around Functions
  541. Урок 541. 00:01:43
    Annotations for Anonymous Functions
  542. Урок 542. 00:02:50
    Void and Never
  543. Урок 543. 00:03:36
    Destructuring with Annotations
  544. Урок 544. 00:07:06
    Annotations Around Objects
  545. Урок 545. 00:05:06
    Arrays in TypeScript
  546. Урок 546. 00:04:31
    Why Typed Arrays?
  547. Урок 547. 00:02:58
    Multiple Typees in Arrays
  548. Урок 548. 00:00:55
    When to Use Typed Arrays
  549. Урок 549. 00:05:06
    Tuples in TypeScript
  550. Урок 550. 00:05:29
    Tuples in Action
  551. Урок 551. 00:03:21
    Why Tuples?
  552. Урок 552. 00:01:27
    Interfaces
  553. Урок 553. 00:04:43
    Long Type Annotations
  554. Урок 554. 00:04:37
    Fixing Annotations With Interfaces
  555. Урок 555. 00:03:21
    Syntax Around Interfaces
  556. Урок 556. 00:04:47
    Functions in Interfaces
  557. Урок 557. 00:04:16
    Code Reuse with Interfaces
  558. Урок 558. 00:03:13
    General Plan with Interfaces
  559. Урок 559. 00:03:48
    Classes
  560. Урок 560. 00:03:04
    Basic Inheritance
  561. Урок 561. 00:06:42
    Class Method Modifiers
  562. Урок 562. 00:06:19
    Fields in Classes
  563. Урок 563. 00:04:19
    Fields with Inheritance
  564. Урок 564. 00:01:11
    Where to Use Classes
  565. Урок 565. 00:02:46
    App Overview
  566. Урок 566. 00:04:55
    Bundling with Parcel
  567. Урок 567. 00:03:20
    Project Structure
  568. Урок 568. 00:05:30
    Generating Random Data
  569. Урок 569. 00:05:18
    Type Definition Files
  570. Урок 570. 00:06:21
    Using Type Definition Files
  571. Урок 571. 00:05:07
    Export Statements in TypeScript
  572. Урок 572. 00:04:44
    Defining a Company
  573. Урок 573. 00:07:39
    Adding Google Maps Support
  574. Урок 574. 00:04:07
    Google Maps Integration with TypeScript
  575. Урок 575. 00:12:47
    Exploring Type Definition Files
  576. Урок 576. 00:06:29
    Hiding Functionality
  577. Урок 577. 00:08:26
    Why Use Private Modifiers? Here's Why
  578. Урок 578. 00:09:19
    Adding Markers
  579. Урок 579. 00:02:46
    Duplicate Code
  580. Урок 580. 00:06:39
    One Possible Solution
  581. Урок 581. 00:05:36
    Restricting Access with Interfaces
  582. Урок 582. 00:03:27
    Implicit Type Checks
  583. Урок 583. 00:06:48
    Showing Popup Windows
  584. Урок 584. 00:07:12
    Updating Interface Definitions
  585. Урок 585. 00:06:07
    Optional Implements Clauses
  586. Урок 586. 00:08:09
    App Wrapup