1. Урок 1. 00:00:31
    Welcome
  2. Урок 2. 00:03:00
    What is Node
  3. Урок 3. 00:03:02
    Node Architecture
  4. Урок 4. 00:04:24
    How Node Works
  5. Урок 5. 00:02:32
    Installing Node
  6. Урок 6. 00:02:20
    Your First Node Program
  7. Урок 7. 00:02:14
    Course Structure
  8. Урок 8. 00:00:29
    Introduction
  9. Урок 9. 00:03:22
    Global Object
  10. Урок 10. 00:03:36
    Modules
  11. Урок 11. 00:04:44
    Creating a Module
  12. Урок 12. 00:05:23
    Loading a Module
  13. Урок 13. 00:04:41
    Module Wrapper Function
  14. Урок 14. 00:04:09
    Path Module
  15. Урок 15. 00:04:19
    OS Module
  16. Урок 16. 00:04:51
    File System Module
  17. Урок 17. 00:06:18
    Events Module
  18. Урок 18. 00:03:09
    Event Arguments
  19. Урок 19. 00:08:02
    Extending Event Emitter
  20. Урок 20. 00:07:25
    HTTP Module
  21. Урок 21. 00:03:42
    Introduction
  22. Урок 22. 00:02:55
    Package.json
  23. Урок 23. 00:03:34
    Installing a Node Package
  24. Урок 24. 00:03:21
    Using a Package
  25. Урок 25. 00:03:19
    Package Dependencies
  26. Урок 26. 00:03:52
    NPM Packages and Source Control
  27. Урок 27. 00:04:30
    Semantic Versioning
  28. Урок 28. 00:02:11
    Listing the Installed Packages
  29. Урок 29. 00:02:46
    Viewing Registry Info for a Package
  30. Урок 30. 00:01:06
    Installing a Specific Version of a Package
  31. Урок 31. 00:05:03
    Updating Local Packages
  32. Урок 32. 00:01:52
    DevDependencies
  33. Урок 33. 00:00:41
    Uninstalling a Package
  34. Урок 34. 00:02:34
    Working with Global Packages
  35. Урок 35. 00:04:33
    Publishing a Package
  36. Урок 36. 00:01:56
    Updating a Published Package
  37. Урок 37. 00:00:48
    Introduction
  38. Урок 38. 00:05:58
    RESTful Services
  39. Урок 39. 00:02:20
    Introducing Express
  40. Урок 40. 00:05:46
    Building Your First Web Server
  41. Урок 41. 00:01:31
    Nodemon
  42. Урок 42. 00:03:14
    Environment Variables
  43. Урок 43. 00:03:23
    Route Parameters
  44. Урок 44. 00:04:46
    Handling HTTP GET Requests
  45. Урок 45. 00:03:43
    Handling HTTP POST Requests
  46. Урок 46. 00:02:08
    Calling Endpoints Using Postman
  47. Урок 47. 00:07:59
    Input Validation
  48. Урок 48. 00:08:31
    Handling HTTP PUT Requests
  49. Урок 49. 00:04:45
    Handling HTTP Delete Requests
  50. Урок 50. 00:01:19
    Project- Build the Genres API
  51. Урок 51. 00:00:23
    Introducion
  52. Урок 52. 00:02:49
    MIddleware
  53. Урок 53. 00:04:24
    Creating Custom Middleware
  54. Урок 54. 00:03:58
    Built-In Middleware
  55. Урок 55. 00:03:56
    Third-party Middleware
  56. Урок 56. 00:04:07
    Environments
  57. Урок 57. 00:09:46
    Configuration
  58. Урок 58. 00:06:55
    Debugging
  59. Урок 59. 00:04:56
    Templating Engines
  60. Урок 60. 00:01:37
    Database Integration
  61. Урок 61. 00:00:30
    Authentication
  62. Урок 62. 00:07:45
    Structuring Express Applications
  63. Урок 63. 00:03:06
    Project- Restructure the App
  64. Урок 64. 00:05:52
    Synchronous Vs. Asynchronous Code
  65. Урок 65. 00:03:08
    Patterns For Dealing With Asynchronous Code
  66. Урок 66. 00:06:00
    Callbacks
  67. Урок 67. 00:02:29
    Callback Hell
  68. Урок 68. 00:04:42
    Named Functions to Rescue
  69. Урок 69. 00:08:38
    Promises
  70. Урок 70. 00:03:32
    Replacing Callbacks with Promises
  71. Урок 71. 00:05:32
    Consuming Promises
  72. Урок 72. 00:02:50
    Creating Settled Promises
  73. Урок 73. 00:06:15
    Running Parallel Promises
  74. Урок 74. 00:06:56
    Async and Await
  75. Урок 75. 00:05:57
    Exercise
  76. Урок 76. 00:02:01
    Introducing MongoDB
  77. Урок 77. 00:03:59
    Installing MongoDB on Mac
  78. Урок 78. 00:05:40
    Installing MongoDB on Windows
  79. Урок 79. 00:03:53
    Connecting to MongoDB
  80. Урок 80. 00:03:49
    Schemas
  81. Урок 81. 00:04:19
    Models
  82. Урок 82. 00:03:34
    Saving a Document
  83. Урок 83. 00:04:19
    Querying Documents
  84. Урок 84. 00:05:00
    Comparison Query Operators
  85. Урок 85. 00:02:02
    Logical Query Operators
  86. Урок 86. 00:03:21
    Regular Expressions
  87. Урок 87. 00:00:50
    Counting
  88. Урок 88. 00:01:37
    Pagination
  89. Урок 89. 00:07:58
    Exercise 1
  90. Урок 90. 00:04:35
    Exercise 2
  91. Урок 91. 00:03:20
    Exercise 3
  92. Урок 92. 00:03:36
    Updating Documents- Query First
  93. Урок 93. 00:06:15
    Updating a Document- Update First
  94. Урок 94. 00:02:39
    Removing Documents
  95. Урок 95. 00:07:00
    Validation
  96. Урок 96. 00:04:56
    Built-In Validators
  97. Урок 97. 00:03:17
    Custom Validators
  98. Урок 98. 00:02:36
    Async Validators
  99. Урок 99. 00:03:38
    Validation Errors
  100. Урок 100. 00:05:57
    SchemaType Options
  101. Урок 101. 00:14:06
    Project- Add Persistence to Genres API
  102. Урок 102. 00:07:00
    Project- Build the Customers API
  103. Урок 103. 00:06:15
    Restructuring the Project
  104. Урок 104. 00:07:46
    Modelling Relationships
  105. Урок 105. 00:03:52
    Referencing Documents
  106. Урок 106. 00:04:17
    Population
  107. Урок 107. 00:06:55
    Embedding Documents
  108. Урок 108. 00:04:32
    Using an Array of Sub-documents
  109. Урок 109. 00:07:06
    Project- Build the Movies API
  110. Урок 110. 00:08:02
    Project- Build the Rentals API
  111. Урок 111. 00:08:46
    Transactions
  112. Урок 112. 00:07:04
    ObjectID
  113. Урок 113. 00:06:14
    Validating Object ID's
  114. Урок 114. 00:02:24
    A Better Implementation
  115. Урок 115. 00:04:02
    Introduction
  116. Урок 116. 00:03:41
    Creating the User Model
  117. Урок 117. 00:07:54
    Registering Users
  118. Урок 118. 00:05:22
    Using Lodash
  119. Урок 119. 00:06:55
    Hashing Passwords
  120. Урок 120. 00:04:55
    Authenticating Users
  121. Урок 121. 00:02:43
    Testing the Authentication
  122. Урок 122. 00:05:05
    JSON Web Tokens
  123. Урок 123. 00:03:19
    Generating Authentication Tokens
  124. Урок 124. 00:06:13
    Storing Secrets in Environment Variables
  125. Урок 125. 00:03:47
    Setting Response Headers
  126. Урок 126. 00:07:12
    Encapsulating Logic in Mongoose Models
  127. Урок 127. 00:06:51
    Authorization Middleware
  128. Урок 128. 00:03:07
    Protecting Routes
  129. Урок 129. 00:04:04
    Getting the Current User
  130. Урок 130. 00:02:05
    Logging Out Users
  131. Урок 131. 00:05:44
    Role Based Authorization
  132. Урок 132. 00:04:11
    Testing the Authorization
  133. Урок 133. 00:03:03
    Introduction
  134. Урок 134. 00:03:08
    Handling Rejected Promises
  135. Урок 135. 00:04:41
    Express Error Middleware
  136. Урок 136. 00:08:30
    Removing Try_Catch docs
  137. Урок 137. 00:03:19
    Express Async Errors
  138. Урок 138. 00:06:37
    Logging Errors
  139. Урок 139. 00:04:12
    Logging to MongoDB
  140. Урок 140. 00:03:36
    Uncaught Exceptions
  141. Урок 141. 00:07:24
    Unhandled Promise Rejections
  142. Урок 142. 00:02:27
    Error Handling Recap
  143. Урок 143. 00:04:55
    Refactoring Index.js- Extracting Routes
  144. Урок 144. 00:03:23
    Extracting the DB Logic
  145. Урок 145. 00:02:12
    Logging
  146. Урок 146. 00:02:31
    Extracting the Config Logic
  147. Урок 147. 00:01:54
    Extracting the Validation Logic
  148. Урок 148. 00:01:30
    Showing Unhandled Exceptions on the Console
  149. Урок 149. 00:02:41
    What is Automated Testing?
  150. Урок 150. 00:02:38
    Benefits of Automated Testing
  151. Урок 151. 00:04:01
    Types of Tests
  152. Урок 152. 00:02:56
    Test Pyramid
  153. Урок 153. 00:02:16
    Tooling
  154. Урок 154. 00:05:01
    Writing Your First Unit Test
  155. Урок 155. 00:06:37
    Testing Numbers
  156. Урок 156. 00:01:52
    Grouping Tests
  157. Урок 157. 00:02:44
    Refactoring with Confidence
  158. Урок 158. 00:03:25
    Testing Strings
  159. Урок 159. 00:05:51
    Testing Arrays
  160. Урок 160. 00:05:31
    Testing Objects
  161. Урок 161. 00:07:26
    Testing Exceptions
  162. Урок 162. 00:01:44
    Continually Running Tests
  163. Урок 163. 00:05:29
    Exercise- Testing the FizzBuzz
  164. Урок 164. 00:05:38
    Creating Simple Mock Functions
  165. Урок 165. 00:05:01
    Interaction Testing
  166. Урок 166. 00:07:17
    Jest Mock Functions
  167. Урок 167. 00:03:07
    What to Unit Test
  168. Урок 168. 00:07:40
    Exercise
  169. Урок 169. 00:01:10
    Introduction
  170. Урок 170. 00:02:19
    Preparing the App
  171. Урок 171. 00:03:02
    Setting Up the Test DB
  172. Урок 172. 00:05:45
    Your First Integration Test
  173. Урок 173. 00:06:18
    Populating the Test DB
  174. Урок 174. 00:03:20
    Testing Routes with Parameters
  175. Урок 175. 00:03:32
    Validating Object ID's
  176. Урок 176. 00:02:05
    Refactoring with Confidence
  177. Урок 177. 00:02:40
    Testing the Authorization
  178. Урок 178. 00:05:33
    Testing Invalid Inputs
  179. Урок 179. 00:02:36
    Testing the Happy Paths
  180. Урок 180. 00:08:41
    Writing Clean Tests
  181. Урок 181. 00:09:46
    Testing the Auth Middleware
  182. Урок 182. 00:06:15
    Unit Testing the Auth Middleware
  183. Урок 183. 00:07:10
    Code Coverage
  184. Урок 184. 00:00:27
    Exercise
  185. Урок 185. 00:02:55
    What is Test-driven Development?
  186. Урок 186. 00:02:34
    Implementing the Returns
  187. Урок 187. 00:02:54
    Test Cases
  188. Урок 188. 00:07:15
    Populating the Database
  189. Урок 189. 00:07:23
    Testing the Authorization
  190. Урок 190. 00:03:43
    Testing the Input
  191. Урок 191. 00:04:19
    Refactoring Tests
  192. Урок 192. 00:03:05
    Looking Up an Object
  193. Урок 193. 00:02:14
    Testing if Rental Processed
  194. Урок 194. 00:02:24
    Testing the Valid Request
  195. Урок 195. 00:04:16
    Testing the Return Date
  196. Урок 196. 00:04:51
    Testing the Rental Fee
  197. Урок 197. 00:05:38
    Testing the Movie Stock
  198. Урок 198. 00:03:37
    Testing the Response
  199. Урок 199. 00:06:45
    Refactoring the Validation Logic
  200. Урок 200. 00:06:13
    Mongoose Static Methods
  201. Урок 201. 00:04:05
    Refactoring the Domain Logic
  202. Урок 202. 00:01:22
    Introduction
  203. Урок 203. 00:02:29
    Preparing the App for Production
  204. Урок 204. 00:02:16
    Getting Started With Heroku
  205. Урок 205. 00:01:56
    Preparing the App for Deployment
  206. Урок 206. 00:02:45
    Adding the Code to a Git Repository
  207. Урок 207. 00:03:45
    Deploying to Heroku
  208. Урок 208. 00:02:47
    Viewing Logs
  209. Урок 209. 00:02:45
    Setting Environment Variables
  210. Урок 210. 00:08:24
    MongoDB in the Cloud