Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай MERN Stack Made Simple, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:00:58
    Course Introduction
  2. Урок 2. 00:02:11
    Project User Stories
  3. Урок 3. 00:02:59
    Project Preview
  4. Урок 4. 00:02:18
    Project Initialization
  5. Урок 5. 00:02:12
    Run a Node Server
  6. Урок 6. 00:03:24
    Run an Express Server
  7. Урок 7. 00:02:23
    Use Environment Variables
  8. Урок 8. 00:02:24
    Atlas Configuration
  9. Урок 9. 00:01:38
    Mongoose
  10. Урок 10. 00:04:53
    Connect to the Database
  11. Урок 11. 00:03:51
    Await the Connection
  12. Урок 12. 00:01:57
    Listen on Connection Success
  13. Урок 13. 00:02:09
    Export connect() to a module
  14. Урок 14. 00:01:53
    Schemas and Models
  15. Урок 15. 00:00:56
    Project Models
  16. Урок 16. 00:03:47
    Create a Schema for Categories
  17. Урок 17. 00:02:51
    Create the Schemas for Locations and Assets
  18. Урок 18. 00:01:12
    CRUD with REST
  19. Урок 19. 00:02:21
    Express Middleware
  20. Урок 20. 00:05:11
    Create a Category
  21. Урок 21. 00:02:02
    Error handling with try-catch
  22. Урок 22. 00:02:04
    Error-handling middleware
  23. Урок 23. 00:01:27
    Read Categories
  24. Урок 24. 00:04:36
    Refactor the Categories routes with Express Router
  25. Урок 25. 00:04:19
    Refactor the Categories methods with categoriesController
  26. Урок 26. 00:01:32
    Sort by Name the Categories Read
  27. Урок 27. 00:04:02
    Read a Single Category
  28. Урок 28. 00:01:27
    Cannot set headers after they are sent to the client
  29. Урок 29. 00:03:44
    Update a Category
  30. Урок 30. 00:02:49
    Delete a Category
  31. Урок 31. 00:09:51
    Locations CRUD
  32. Урок 32. 00:07:30
    Create an Asset
  33. Урок 33. 00:03:03
    Read Assets
  34. Урок 34. 00:03:35
    Populate Assets with Category and Location
  35. Урок 35. 00:04:58
    Update and Delete Assets
  36. Урок 36. 00:07:29
    Forbid Category or Location deletion if assigned to Asset
  37. Урок 37. 00:06:22
    Search Assets
  38. Урок 38. 00:06:12
    Search Categories and Locations
  39. Урок 39. 00:18:12
    Pagination
  40. Урок 40. 00:05:26
    Create React App and Clean Up
  41. Урок 41. 00:05:54
    Navigation Bar Component with React Bootstrap
  42. Урок 42. 00:05:47
    React Router
  43. Урок 43. 00:06:56
    NotFound Component
  44. Урок 44. 00:10:42
    LinkContainers in the NavigationBar
  45. Урок 45. 00:03:29
    About Component and CSS overrides on Bootstrap
  46. Урок 46. 00:05:18
    Tabs and Components for Tabs
  47. Урок 47. 00:07:17
    Assets Component
  48. Урок 48. 00:02:27
    Concurrent Backend and Frontend starting
  49. Урок 49. 00:06:51
    Fetch assets from the API
  50. Урок 50. 00:07:02
    CRA Proxy
  51. Урок 51. 00:05:26
    Loading Component
  52. Урок 52. 00:06:41
    Error Handling
  53. Урок 53. 00:03:33
    Fetch categories from the API
  54. Урок 54. 00:16:14
    ByCategory Component
  55. Урок 55. 00:05:42
    Refactor with useReducer
  56. Урок 56. 00:06:17
    Dispatching actions from the app methods
  57. Урок 57. 00:06:54
    Manage the app state with a reducer
  58. Урок 58. 00:03:46
    Export reducer and methods to modules
  59. Урок 59. 00:04:52
    Fetch locations from the API
  60. Урок 60. 00:04:52
    ByLocation Component
  61. Урок 61. 00:01:06
    Media query for tab width on small screens
  62. Урок 62. 00:10:38
    Search Component
  63. Урок 63. 00:05:08
    Fetch filtered assets from the API
  64. Урок 64. 00:04:32
    Change Search Term
  65. Урок 65. 00:05:11
    Configure the reduced state from Assets Filtering
  66. Урок 66. 00:04:03
    Clear Search Term
  67. Урок 67. 00:03:29
    Fetch paginated assets
  68. Урок 68. 00:03:39
    Set Page and Number Of Pages
  69. Урок 69. 00:09:43
    PaginationButtons Component
  70. Урок 70. 00:05:37
    Configure the reduced state from Pagination
  71. Урок 71. 00:03:28
    Reset page after search
  72. Урок 72. 00:16:25
    ManageAssets Component
  73. Урок 73. 00:05:06
    ManageAssets Route
  74. Урок 74. 00:20:32
    AssetForm Component
  75. Урок 75. 00:05:19
    Create Asset Route
  76. Урок 76. 00:08:18
    Create Asset Method and Reduced State
  77. Урок 77. 00:04:27
    Reload after asset creation and loader state fixes
  78. Урок 78. 00:08:26
    Delete Asset Method and Reduced State
  79. Урок 79. 00:05:58
    Update Asset Route and Component
  80. Урок 80. 00:08:06
    Update Asset Method and Reduced State
  81. Урок 81. 00:02:50
    Handle page refresh on update asset form
  82. Урок 82. 00:01:17
    Word wrap for table data
  83. Урок 83. 00:06:36
    ManageCategories Component and Route
  84. Урок 84. 00:09:36
    Fetch Filtered Categories
  85. Урок 85. 00:08:11
    CategoryForm Component
  86. Урок 86. 00:04:44
    Create Category
  87. Урок 87. 00:05:43
    Update Category
  88. Урок 88. 00:04:37
    Delete Category
  89. Урок 89. 00:12:36
    Manage Locations
  90. Урок 90. 00:08:11
    LocationForm Component
  91. Урок 91. 00:09:41
    Create, Update and Delete Location
  92. Урок 92. 00:02:24
    User Model
  93. Урок 93. 00:07:16
    Validation in the Database
  94. Урок 94. 00:06:37
    Create User
  95. Урок 95. 00:05:28
    Password Hashing with BcryptJs
  96. Урок 96. 00:06:41
    Validation in the Server
  97. Урок 97. 00:06:00
    Sign and respond with a JWT
  98. Урок 98. 00:09:12
    Authorization Middleware
  99. Урок 99. 00:06:47
    Login User
  100. Урок 100. 00:04:52
    Restrict the creation of admin accounts to admins
  101. Урок 101. 00:04:13
    Read Users
  102. Урок 102. 00:04:27
    Restrict Users CRUD access to admins
  103. Урок 103. 00:03:15
    Read a Single User
  104. Урок 104. 00:08:14
    Update User
  105. Урок 105. 00:03:21
    Delete User
  106. Урок 106. 00:07:19
    Change Own Password
  107. Урок 107. 00:06:28
    LoginForm Component
  108. Урок 108. 00:03:18
    LoginForm Route
  109. Урок 109. 00:03:38
    Set the token to the headers and local storage
  110. Урок 110. 00:05:39
    Login Method
  111. Урок 111. 00:11:07
    Login Reduced State
  112. Урок 112. 00:11:18
    Reconfigure the NavigationBar
  113. Урок 113. 00:06:14
    Restrict manage routes access to signed in users
  114. Урок 114. 00:05:13
    Logout
  115. Урок 115. 00:14:47
    UserData Component and Route
  116. Урок 116. 00:03:49
    Toggle Passwords View
  117. Урок 117. 00:06:04
    Change Password
  118. Урок 118. 00:04:16
    ManageUsers Component
  119. Урок 119. 00:04:45
    ManageUsers Route
  120. Урок 120. 00:04:51
    Fetch Filtered Users
  121. Урок 121. 00:14:51
    UserForm Component
  122. Урок 122. 00:02:57
    Create User Route
  123. Урок 123. 00:07:09
    Create User Method and Reduced State
  124. Урок 124. 00:08:16
    Update User
  125. Урок 125. 00:02:34
    Delete User
  126. Урок 126. 00:04:34
    Serve static files from the backend server
  127. Урок 127. 00:03:06
    Fix broken links with a catch-all route
  128. Урок 128. 00:03:46
    Prepare the Code for Deployment
  129. Урок 129. 00:06:15
    Deploy to Heroku
  130. Урок 130. 00:01:28
    Install Node on Windows 10
  131. Урок 131. 00:02:06
    Install Git on Windows 10
  132. Урок 132. 00:01:56
    Install VSCode on Windows 10