-
Урок 1.
00:02:17
Introduction
-
Урок 2.
00:03:27
Overview to our RESTful API
-
Урок 3.
00:02:19
Pickup Your Task and We Review it - How this course is interactive?
-
Урок 4.
00:01:56
Installing NodeJs
-
Урок 5.
00:07:25
Installing our Coding Editor (IDE) + Extensions
-
Урок 6.
00:01:51
Installing PostMan to Test our API's
-
Урок 7.
00:01:58
Configure MongoDB Atlas
-
Урок 8.
00:01:23
Introduction
-
Урок 9.
00:01:11
File Structure
-
Урок 10.
00:06:39
Creating the Backend Server with Express
-
Урок 11.
00:05:00
Reading Environment Variables
-
Урок 12.
00:07:13
Create First API Call & Parsing Json Data
-
Урок 13.
00:02:39
Logging API Requests
-
Урок 14.
00:10:03
Installing Mongoose and Connect to MongoDB Database
-
Урок 15.
00:14:32
Read/Write Data to Database Using API
-
Урок 16.
00:05:41
Analysing the E-Shop Database
-
Урок 17.
00:09:49
Create Backend API Routes & Schemas
-
Урок 18.
00:03:16
Enabling CORS & Why Do We Need It?
-
Урок 19.
00:02:45
Introduction
-
Урок 20.
00:06:13
Products Model & Scheme
-
Урок 21.
00:01:44
Categories Model & Scheme
-
Урок 22.
00:12:40
Add and Delete Categories
-
Урок 23.
00:02:49
Get Categories and Category Details
-
Урок 24.
00:04:10
Update Category
-
Урок 25.
00:05:56
Post a New Product REST API
-
Урок 26.
00:03:48
Get a Product & List of Products REST API
-
Урок 27.
00:03:02
Population of Category in Get a Product API
-
Урок 28.
00:03:18
Update a Product REST API
-
Урок 29.
00:03:46
Delete a Product REST API and Validate Id
-
Урок 30.
00:03:44
Get Products Count for Statistics Purposes
-
Урок 31.
00:05:19
Get Featured Products REST API
-
Урок 32.
00:06:55
Filtering and Getting Products by Category
-
Урок 33.
00:02:06
Changing "_id" key to "id" - more frontend friendly
-
Урок 34.
00:05:13
Introduction
-
Урок 35.
00:02:02
Users Model & Schema
-
Урок 36.
00:05:19
Post/Register a New User REST API
-
Урок 37.
00:02:58
Hashing the User Password
-
Урок 38.
00:02:57
Get User and List of Users Excluding Password
-
Урок 39.
00:11:26
Login a User REST API & Creating a Token
-
Урок 40.
00:06:08
Protecting the API and Authentication JWT Middleware
-
Урок 41.
00:05:08
Authentication Error Handling
-
Урок 42.
00:06:49
Excluding REST API Routes From Authentication
-
Урок 43.
00:02:39
Add More Secret User Information to Token
-
Урок 44.
00:06:47
Users & Admins - User Role
-
Урок 45.
00:02:17
Get User Count REST API
-
Урок 46.
00:01:55
Introduction
-
Урок 47.
00:05:01
Orders & Order-Items Model & Scheme
-
Урок 48.
00:01:13
Array of Refs - Example of Link Order to Order Items to Products
-
Урок 49.
00:11:43
New Order & Create Order Items on Posting New Order
-
Урок 50.
00:08:11
Get Order Detail and Populate Products in Order Items and User Data
-
Урок 51.
00:04:30
Update Order Status & Delete Order
-
Урок 52.
00:01:55
Explaining the Solution
-
Урок 53.
00:07:02
Calculating Total Price of one Order
-
Урок 54.
00:06:43
Get Total E-Shop Sales using $sum
-
Урок 55.
00:03:26
Get User Orders
-
Урок 56.
00:02:23
Introduction
-
Урок 57.
00:11:25
Configure Server Side Upload
-
Урок 58.
00:04:56
Testing Image Upload with Postman
-
Урок 59.
00:06:17
Validating Uploaded File Types
-
Урок 60.
00:01:11
Image Upload With Product Post Request
-
Урок 61.
00:07:18
Product Gallery Multiple Images Upload
-
Урок 62.
00:02:58
Excluding Uploads Folder From Authentication