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