Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай NestJs - Build Modern APIs in NestJs with Unit Testing, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:01:33
    Introduction to the Course
  2. Урок 2. 00:05:47
    DEMO of API
  3. Урок 3. 00:02:51
    What is Nest.js & Why we need it?
  4. Урок 4. 00:01:55
    How to Follow the Course & Code?
  5. Урок 5. 00:02:54
    Installing all required tools
  6. Урок 6. 00:02:00
    Install MongoDB on MacOS
  7. Урок 7. 00:04:26
    Install MongoDB on Windows
  8. Урок 8. 00:03:15
    Installing Nest CLI & Creating app
  9. Урок 9. 00:03:07
    Understanding the folder structure
  10. Урок 10. 00:04:45
    Nest.js Modules
  11. Урок 11. 00:03:43
    Nest.js Controllers
  12. Урок 12. 00:05:33
    Nest.js Service & Providers
  13. Урок 13. 00:10:08
    Connecting to MongoDB with mongoose
  14. Урок 14. 00:08:23
    Creating Restaurant Schema
  15. Урок 15. 00:11:10
    Get all Restaurants
  16. Урок 16. 00:06:23
    Create a new Restaurant
  17. Урок 17. 00:02:24
    What is DTO?
  18. Урок 18. 00:02:33
    Creating a Restaurant DTO
  19. Урок 19. 00:06:53
    Get Restaurant by ID
  20. Урок 20. 00:08:10
    Update Restaurant by ID
  21. Урок 21. 00:04:48
    Delete Restaurant
  22. Урок 22. 00:06:55
    Adding Search
  23. Урок 23. 00:05:10
    Adding Pagination
  24. Урок 24. 00:03:30
    What are Pipes?
  25. Урок 25. 00:10:37
    Using Validation Pipe Globally
  26. Урок 26. 00:03:35
    Adding Validation Rules in Update DTO
  27. Урок 27. 00:03:00
    Invalid Mongoose ID Error
  28. Урок 28. 00:03:04
    What is GeoCoder
  29. Урок 29. 00:10:24
    Generating Coordinates & Address
  30. Урок 30. 00:05:48
    Saving Location in Restaurants
  31. Урок 31. 00:07:54
    Create Bucket on S3
  32. Урок 32. 00:06:51
    Getting files through File Intercepter
  33. Урок 33. 00:11:56
    Uploading images to S3
  34. Урок 34. 00:03:16
    Saving Images in Restaurant
  35. Урок 35. 00:09:51
    Delete Restaurant Images
  36. Урок 36. 00:02:55
    Generating Auth Module
  37. Урок 37. 00:05:54
    Creating User Schema
  38. Урок 38. 00:02:24
    Sign up DTO with Validators
  39. Урок 39. 00:06:41
    User Sign up
  40. Урок 40. 00:03:32
    Hash user password while Sign up
  41. Урок 41. 00:02:46
    Handle Duplicate Email Error
  42. Урок 42. 00:07:36
    Login User
  43. Урок 43. 00:06:04
    Setting Up JWT & Passport
  44. Урок 44. 00:05:49
    Sign JWT token on Login
  45. Урок 45. 00:08:23
    Setting Up JWT Strategy
  46. Урок 46. 00:04:44
    Using AuthGuard to Protect Routes
  47. Урок 47. 00:04:55
    Current User Decorator
  48. Урок 48. 00:05:53
    Saving Current User in Restaurant
  49. Урок 49. 00:08:19
    Creating User Roles Guard
  50. Урок 50. 00:03:50
    Roles Decorator
  51. Урок 51. 00:05:16
    Authorize Restaurant Ownership
  52. Урок 52. 00:05:54
    Creating Meal Model
  53. Урок 53. 00:06:11
    Create Meal DTO
  54. Урок 54. 00:14:49
    Creating a Meal
  55. Урок 55. 00:05:25
    Getting all Meals
  56. Урок 56. 00:03:52
    Get Meal by ID
  57. Урок 57. 00:06:58
    Update Meal
  58. Урок 58. 00:05:55
    Delete Meal
  59. Урок 59. 00:04:26
    Create Library Project
  60. Урок 60. 00:03:37
    Install & Setup Postgres & pgAdmin
  61. Урок 61. 00:04:09
    Connecting to Postgres Database
  62. Урок 62. 00:03:14
    Create Book Entity
  63. Урок 63. 00:08:12
    Create new Book
  64. Урок 64. 00:03:59
    Get all Books & Book by ID
  65. Урок 65. 00:04:10
    Update Book
  66. Урок 66. 00:02:25
    Delete Book
  67. Урок 67. 00:02:42
    Relations & Types of relations
  68. Урок 68. 00:05:34
    Create User Entity
  69. Урок 69. 00:06:49
    Adding Books & User Relation (OneToMany & ManyToOne)
  70. Урок 70. 00:02:48
    What is Unit Testing?
  71. Урок 71. 00:08:40
    Write first unit test in Restaurant Service
  72. Урок 72. 00:10:23
    Testing RestaurantsService - findAll
  73. Урок 73. 00:09:49
    Testing RestaurantsService - create
  74. Урок 74. 00:08:44
    Testing RestaurantsService - findById
  75. Урок 75. 00:04:47
    Testing RestaurantsService - updateById
  76. Урок 76. 00:02:34
    Testing RestaurantsService - deleteById
  77. Урок 77. 00:05:50
    Testing RestaurantsService - uploadImages
  78. Урок 78. 00:02:47
    Testing RestaurantsService - deleteImages
  79. Урок 79. 00:06:51
    First unit test in Restaurant Controller
  80. Урок 80. 00:03:43
    Testing RestaurantController - getAllRestaurants
  81. Урок 81. 00:03:42
    Testing RestaurantController - createRestaurant
  82. Урок 82. 00:03:06
    Testing RestaurantController - getRestaurantById
  83. Урок 83. 00:09:15
    Testing RestaurantController - updateRestaurant
  84. Урок 84. 00:07:24
    Testing RestaurantController - deleteRestaurant
  85. Урок 85. 00:03:53
    Testing RestaurantController - uploadFiles
  86. Урок 86. 00:05:54
    Testing Auth Service
  87. Урок 87. 00:09:27
    Testing AuthService - signUp
  88. Урок 88. 00:08:49
    Testing AuthService - login
  89. Урок 89. 00:04:09
    Testing Auth Controller
  90. Урок 90. 00:03:05
    Testing AuthController - signUp
  91. Урок 91. 00:02:21
    Testing AuthController - login
  92. Урок 92. 00:11:28
    Testing JwtStrategy
  93. Урок 93. 00:04:20
    What is e2e Testing
  94. Урок 94. 00:10:48
    Testing Authentication Routes
  95. Урок 95. 00:06:08
    Testing Restaurants POST protected Routes
  96. Урок 96. 00:04:10
    Testing Restaurants GET Routes
  97. Урок 97. 00:02:28
    Testing Restaurants PUT & DELETE Routes
  98. Урок 98. 00:07:27
    Preparing API for Deploy
  99. Урок 99. 00:05:57
    Deploy API on Heroku
  100. Урок 100. 00:00:46
    Congratulations!!!