1. Урок 1. 00:27:04
    Introduction to REST
  2. Урок 2. 00:08:04
    HTTP Methods and Status Codes
  3. Урок 3. 00:01:51
    Why develop (and use) a REST API?
  4. Урок 4. 00:17:20
    Create a REST API without external dependencies
  5. Урок 5. 00:01:38
    Introduction to Express
  6. Урок 6. 00:01:55
    Install Express
  7. Урок 7. 00:05:26
    Basic route handling
  8. Урок 8. 00:03:30
    Advanced routing via the Router object
  9. Урок 9. 00:02:16
    Working with Static Files
  10. Урок 10. 00:02:16
    Utilising Query Strings
  11. Урок 11. 00:03:48
    Utilising Query Parameters
  12. Урок 12. 00:15:21
    Introduction to Relational Databases
  13. Урок 13. 00:05:17
    Introduction to SQL
  14. Урок 14. 00:05:31
    Install Workbench
  15. Урок 15. 00:07:01
    Create a database and a table
  16. Урок 16. 00:02:37
    Insert data
  17. Урок 17. 00:01:45
    Update data
  18. Урок 18. 00:00:43
    Delete data
  19. Урок 19. 00:11:42
    Advanced SQL statements
  20. Урок 20. 00:06:30
    SQL JOINs - joining information in two tables
  21. Урок 21. 00:03:17
    Reviewing the final setup
  22. Урок 22. 00:07:35
    Designing our REST API
  23. Урок 23. 00:06:59
    Using the MySQL Native Driver
  24. Урок 24. 00:04:19
    Select data via the MySQL Native Driver (Using SQL's SELECT statement)
  25. Урок 25. 00:05:21
    Introduction to Knex.js
  26. Урок 26. 00:04:13
    Extend the REST API by using Knex.js
  27. Урок 27. 00:05:34
    Using Express Middlewares
  28. Урок 28. 00:09:10
    Posting data to the database via Knex.js
  29. Урок 29. 00:06:37
    Patching data in the database with Knex.js
  30. Урок 30. 00:03:21
    Deleting data from the database with Knex.js
  31. Урок 31. 00:02:43
    Handling missing routes
  32. Урок 32. 00:01:52
    Student Challenge: Create the route handlers for Departments
  33. Урок 33. 00:11:02
    Use JOINs with Knex.js
  34. Урок 34. 00:06:56
    Utilise Query Strings
  35. Урок 35. 00:01:42
    Return an object instead of an array
  36. Урок 36. 00:11:18
    Introduction to NoSQL
  37. Урок 37. 00:10:48
    Install and load data to MongoDB
  38. Урок 38. 00:17:31
    Basic queries in MongoDB
  39. Урок 39. 00:10:37
    Updates and Aggregates
  40. Урок 40. 00:02:13
    Create a blank application
  41. Урок 41. 00:08:28
    Display all data from MongoDB
  42. Урок 42. 00:06:47
    Display a single Document from MongoDB
  43. Урок 43. 00:04:32
    Insert data in NoSQL
  44. Урок 44. 00:02:41
    insert() vs insertOne() in MongoDB
  45. Урок 45. 00:03:59
    HTTP Patch for MongoDB
  46. Урок 46. 00:01:35
    Delete data from MongoDB
  47. Урок 47. 00:06:18
    Handling errors
  48. Урок 48. 00:07:36
    Loading additional documents to MongoDB
  49. Урок 49. 00:06:12
    Query Parameters for NoSQL
  50. Урок 50. 00:08:05
    Introduction to JWT (JSON Web Tokens)
  51. Урок 51. 00:23:47
    Implement JWT for a SQL based REST API
  52. Урок 52. 00:11:48
    Implement JWT for a NoSQL based REST API
  53. Урок 53. 00:14:16
    Introduction to GraphQL
  54. Урок 54. 00:20:29
    Query that returns a collection
  55. Урок 55. 00:04:34
    Query that returns a single data object
  56. Урок 56. 00:10:34
    Execute subqueries using GraphQL
  57. Урок 57. 00:04:20
    Execute subqueries for nested data using GraphQL
  58. Урок 58. 00:05:58
    A note on performance for RDBMS and GraphQL
  59. Урок 59. 00:06:34
    Authentication for GraphQL and our REST API
  60. Урок 60. 00:20:06
    Using GraphQL with NoSQL
  61. Урок 61. 00:05:11
    Introduction to Insomnia
  62. Урок 62. 00:05:35
    CORS
  63. Урок 63. 00:04:36
    Using environment variables the smart way
  64. Урок 64. 00:06:55
    Create an application to consume our REST API - part 1
  65. Урок 65. 00:13:55
    Create an application to consume our REST API - part 2
  66. Урок 66. 00:31:55
    Create an application to consume our REST API - part 3