Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Understanding Node.js: Core Concepts, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:29:44
    Course Overview
  2. Урок 2. 00:49:41
    Setting Up - For Windows Users Only
  3. Урок 3. 00:59:57
    Setting Up - For Mac Users Only
  4. Урок 4. 00:53:06
    Setting Up - For Linux Users Only
  5. Урок 5. 00:40:47
    Introduction to the Command Line
  6. Урок 6. 00:15:24
    Learning NVM & Node.js Versions
  7. Урок 7. 01:36:02
    Node.js Under the Hood
  8. Урок 8. 00:34:06
    Understanding EventEmitter
  9. Урок 9. 00:06:48
    Introdcution
  10. Урок 10. 00:13:32
    Understanding Binary Numbers
  11. Урок 11. 00:21:10
    Understanding Hexadecimal Numbers
  12. Урок 12. 00:11:49
    Using a Programming Calculator
  13. Урок 13. 00:25:21
    Understanding Character Encodings
  14. Урок 14. 00:07:35
    The Concept of Buffers
  15. Урок 15. 00:38:47
    Buffers in Action
  16. Урок 16. 00:18:15
    Allocating Huge Buffers
  17. Урок 17. 00:20:59
    Fastest Way of Allocating Buffers
  18. Урок 18. 00:14:02
    Reading the Node.js Docs
  19. Урок 19. 00:02:09
    Outro
  20. Урок 20. 00:11:19
    Introduction
  21. Урок 21. 00:07:33
    What Exactly Is a File?
  22. Урок 22. 00:04:07
    How Node.js Deals with Files
  23. Урок 23. 00:14:43
    Three Different Ways of Doing the Same Thing
  24. Урок 24. 00:13:33
    Watching the Command File for Changes
  25. Урок 25. 00:18:41
    Reading the Content of the Command File
  26. Урок 26. 00:04:23
    Cleaning Up the Code using EventEmitter
  27. Урок 27. 00:03:54
    Making Sense Out of the Read Data
  28. Урок 28. 00:15:37
    Implementing the Create File Command
  29. Урок 29. 00:15:22
    Defining the Rest of the Commands
  30. Урок 30. 00:11:08
    Solution - Implementing the deleteFile Function
  31. Урок 31. 00:03:39
    Solution - Implementing the renameFile Function
  32. Урок 32. 00:11:08
    Solution - Implementing the addToFile Function
  33. Урок 33. 00:01:08
    Outro
  34. Урок 34. 00:04:52
    Introduction
  35. Урок 35. 00:26:26
    Benchmarking Writing a Million Times to a File
  36. Урок 36. 00:07:58
    Using Streams Naively in Our Solution
  37. Урок 37. 00:08:59
    So What Exactly Are Streams?
  38. Урок 38. 00:17:53
    Understanding Different Types of Streams
  39. Урок 39. 00:36:55
    Fixing the Memory Issue in Our Program
  40. Урок 40. 00:09:49
    Reading Writable Streams Node.js Docs and Recap
  41. Урок 41. 00:21:36
    Readable Streams in Action
  42. Урок 42. 00:09:18
    Selectively Writing Our Data from the Readable Stream
  43. Урок 43. 00:16:57
    Understanding the Splitting Issue
  44. Урок 44. 00:16:28
    Implementing the Solution and Resolving the Splitting Issue
  45. Урок 45. 00:08:04
    Reading Node.js Docs and Recap
  46. Урок 46. 00:23:31
    Building Our Own Streaming Solution Using Buffers
  47. Урок 47. 00:25:43
    Understanding Piping
  48. Урок 48. 00:42:29
    Implementing Our Own Writable Stream
  49. Урок 49. 00:20:03
    Implementing Our Own Readable Stream
  50. Урок 50. 00:17:27
    Understanding Duplex and Transform Streams
  51. Урок 51. 00:39:04
    Creating an Encryption/Decryption Application
  52. Урок 52. 00:26:05
    Final Notes
  53. Урок 53. 00:12:00
    Introduction
  54. Урок 54. 00:15:03
    Understanding MAC Addresses and Switches
  55. Урок 55. 00:15:17
    Understanding Routers and How the Internet Works
  56. Урок 56. 00:16:30
    Understanding Networking Layers
  57. Урок 57. 00:24:44
    Creating a Simple TCP Application in Node.js
  58. Урок 58. 00:13:03
    Understanding the Transport Layer - TCP/UDP
  59. Урок 59. 00:25:20
    A Networking Scenario in Action
  60. Урок 60. 00:12:03
    Understanding Port Numbers
  61. Урок 61. 00:29:47
    Creating a Chat Application PART 1
  62. Урок 62. 00:34:19
    Creating a Chat Application PART 2
  63. Урок 63. 00:21:35
    Improving the UI of our Chat App
  64. Урок 64. 00:18:47
    Identifying Users in the Chat App
  65. Урок 65. 00:04:10
    Notifying Everyone When Somebody Joins/Leaves the Chat
  66. Урок 66. 00:15:27
    Some Final Notes About the Chat App
  67. Урок 67. 00:34:32
    Deploying our Chat App to AWS
  68. Урок 68. 00:40:10
    Understanding IPv4 Addresses
  69. Урок 69. 00:31:37
    Understanding DNS
  70. Урок 70. 00:26:45
    Understanding IPv6 Addresses
  71. Урок 71. 00:26:03
    Creating an Uploader Application
  72. Урок 72. 00:33:16
    Taking Care of Backpressures in the Uploader App
  73. Урок 73. 00:20:44
    Getting the File Names Dynamically in the Uploader App
  74. Урок 74. 00:16:03
    Displaying the Upload Progress in Our Uploader App
  75. Урок 75. 00:20:06
    Deploying our Uploader App
  76. Урок 76. 00:32:38
    Understanding UDP and the Dgram Module
  77. Урок 77. 00:01:31
    Outro
  78. Урок 78. 00:10:39
    Introduction
  79. Урок 79. 00:07:01
    The Idea of HTTP
  80. Урок 80. 00:15:10
    Creating a Simple HTTP Server in Node
  81. Урок 81. 00:12:52
    Understanding HTTP Messages, Requests & Responses
  82. Урок 82. 00:16:14
    Understanding Connection Types
  83. Урок 83. 00:21:11
    Building our Client and Sending a Request
  84. Урок 84. 00:12:44
    Sending a Response to the Client
  85. Урок 85. 00:25:36
    Learning Postman & Testing Our Server with It
  86. Урок 86. 00:28:35
    Reading Some Docs
  87. Урок 87. 00:20:06
    Sending an HTTP Request Directly on Top of TCP! PART 1
  88. Урок 88. 00:22:06
    Sending an HTTP Request Directly on Top of TCP! PART 2
  89. Урок 89. 00:11:20
    Emulating our HTTP Server Using the Net Module
  90. Урок 90. 00:16:52
    Understanding Media Types (MIME Types)
  91. Урок 91. 00:21:37
    Understanding HTTP Methods
  92. Урок 92. 00:15:05
    Understanding HTTP status codes
  93. Урок 93. 00:18:23
    Creating a Simple Web Server in Node
  94. Урок 94. 00:22:06
    Serving a CSS and JavaScript File
  95. Урок 95. 00:07:55
    Adding Some JSON Routes
  96. Урок 96. 00:13:02
    Adding a File Upload Route
  97. Урок 97. 00:23:19
    Creating our Own Little Mini-Express Framework!
  98. Урок 98. 00:15:05
    Making our Framework More Robust
  99. Урок 99. 00:11:26
    Getting Ready for Our Next Project
  100. Урок 100. 00:16:16
    Using Our Framework to Create a Web App
  101. Урок 101. 00:21:16
    Adding the Login Route
  102. Урок 102. 00:18:20
    Understanding HTTP Proxies
  103. Урок 103. 00:12:58
    HTTP is Stateless
  104. Урок 104. 00:13:08
    Understanding Cookies
  105. Урок 105. 00:18:16
    Recognizing Users for Future Requests after Logging In
  106. Урок 106. 00:09:15
    Sending the User’s Info in Profile
  107. Урок 107. 00:23:05
    Enhancing Our Framework with Middleware Support
  108. Урок 108. 00:18:09
    Defining the Middleware Functions
  109. Урок 109. 00:25:03
    Implementing the Create Post, Update User, and Logout Routes
  110. Урок 110. 00:02:54
    Outro