Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Complete Node.js Developer in 2023: Zero to Mastery, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:06:23
    Course Outline
  2. Урок 2. 00:09:20
    Node.js - How We Got Here
  3. Урок 3. 00:08:20
    Node.js Runtime
  4. Урок 4. 00:04:00
    How To Succeed In The Course
  5. Урок 5. 00:01:17
    Latest Version Of Node.js
  6. Урок 6. 00:06:34
    OPTIONAL: Installing Node.js
  7. Урок 7. 00:03:06
    OPTIONAL: Windows Installation Tips
  8. Урок 8. 00:04:05
    Node.js Release Cycle
  9. Урок 9. 00:06:09
    The Node.js REPL
  10. Урок 10. 00:04:31
    Setting Up Our Developer Environment
  11. Урок 11. 00:11:36
    Our First Node App
  12. Урок 12. 00:05:46
    Node.js VS JavaScript
  13. Урок 13. 00:05:46
    The global Object
  14. Урок 14. 00:08:56
    Introduction to Backend VS Frontend
  15. Урок 15. 00:09:39
    What Node.js Includes
  16. Урок 16. 00:10:58
    Node Internals Deep Dive
  17. Урок 17. 00:12:54
    libuv Internals Deep Dive
  18. Урок 18. 00:05:24
    Synchronous vs Asynchronous
  19. Урок 19. 00:05:56
    Asynchronous Callbacks
  20. Урок 20. 00:03:33
    Non-Blocking Input & Output
  21. Урок 21. 00:02:28
    Exercise: Is JavaScript Asynchronous?
  22. Урок 22. 00:11:41
    Multi-Threading, Processes, and Threads
  23. Урок 23. 00:10:57
    Is Node.js Multi-Threaded?
  24. Урок 24. 00:04:04
    The Event Loop
  25. Урок 25. 00:04:52
    Callback Queues
  26. Урок 26. 00:09:19
    Phases of the Event Loop
  27. Урок 27. 00:06:34
    Comparing Node With PHP and Python
  28. Урок 28. 00:04:53
    What Is Node.js Best At?
  29. Урок 29. 00:05:28
    Observer Design Pattern
  30. Урок 30. 00:14:07
    The Node Event Emitter
  31. Урок 31. 00:02:50
    The require Function
  32. Урок 32. 00:11:10
    Making HTTP Requests
  33. Урок 33. 00:04:06
    Why Use Modules?
  34. Урок 34. 00:13:04
    Creating Our Own Modules
  35. Урок 35. 00:04:04
    Exporting From Modules
  36. Урок 36. 00:04:12
    CommonJS vs ECMAScript Modules
  37. Урок 37. 00:06:32
    Creating Our Own ECMAScript Modules
  38. Урок 38. 00:07:43
    Module Caching
  39. Урок 39. 00:08:41
    Using index.js
  40. Урок 40. 00:04:43
    Should We Use index.js?
  41. Урок 41. 00:04:40
    NPM: The Node Package Manager
  42. Урок 42. 00:09:24
    Creating Our First NPM Package
  43. Урок 43. 00:01:57
    Packages And The NPM Registry
  44. Урок 44. 00:11:12
    Using Third Party Modules
  45. Урок 45. 00:09:55
    The node_modules Folder
  46. Урок 46. 00:02:38
    Semantic Versioning
  47. Урок 47. 00:09:43
    package-lock.json and Versioning
  48. Урок 48. 00:04:55
    Vulnerabilities In Dependencies
  49. Урок 49. 00:09:57
    Installing NPM Tools: nodemon
  50. Урок 50. 00:01:50
    Exploring Planets With Node
  51. Урок 51. 00:04:53
    Importing Kepler Space Telescope Data
  52. Урок 52. 00:05:25
    Setting Up Our CSV Parser
  53. Урок 53. 00:05:33
    Streaming Large Data Files
  54. Урок 54. 00:06:49
    Reading Our Planets Data
  55. Урок 55. 00:06:05
    Parsing Our Planets Data
  56. Урок 56. 00:08:27
    Finding Habitable Planets
  57. Урок 57. 00:07:19
    Exploring Habitable Planets
  58. Урок 58. 00:05:25
    What is a Web Server?
  59. Урок 59. 00:03:58
    Introduction to HTTP Responses and Requests
  60. Урок 60. 00:07:42
    HTTP Requests
  61. Урок 61. 00:13:37
    HTTP Responses
  62. Урок 62. 00:10:13
    Our First Webserver
  63. Урок 63. 00:09:01
    HTTP APIs and Routing
  64. Урок 64. 00:10:38
    Parameterized URLs
  65. Урок 65. 00:09:24
    Same Origin Policy
  66. Урок 66. 00:10:30
    Cross Origin Resource Sharing (CORS)
  67. Урок 67. 00:11:32
    POSTing Data to the Server
  68. Урок 68. 00:11:51
    Requests and Responses as Streams
  69. Урок 69. 00:04:06
    Web Servers Recap
  70. Урок 70. 00:03:36
    Why Express?
  71. Урок 71. 00:09:37
    Introduction to Express
  72. Урок 72. 00:11:19
    Express vs Next.js vs Koa
  73. Урок 73. 00:09:05
    Route Parameters
  74. Урок 74. 00:06:08
    Postman and Insomnia
  75. Урок 75. 00:03:50
    Development Dependencies
  76. Урок 76. 00:07:31
    Middleware
  77. Урок 77. 00:10:26
    Writing Our Own Logging Middleware
  78. Урок 78. 00:16:22
    POST Requests in Express
  79. Урок 79. 00:07:39
    Model View Controller (MVC)
  80. Урок 80. 00:18:31
    Model View Controller in Express
  81. Урок 81. 00:16:39
    Express Routers
  82. Урок 82. 00:11:40
    RESTful APIs
  83. Урок 83. 00:06:57
    Create Read Update and Delete (CRUD)
  84. Урок 84. 00:06:07
    Sending Files
  85. Урок 85. 00:09:46
    Serving Websites With Node
  86. Урок 86. 00:11:34
    Templating Engines
  87. Урок 87. 00:07:44
    Layouts and Separation of Concerns
  88. Урок 88. 00:11:03
    Introduction & Architecture
  89. Урок 89. 00:05:48
    NASA Dashboard Front End Setup
  90. Урок 90. 00:05:12
    NASA Dashboard Functionality
  91. Урок 91. 00:02:15
    What You Need To Know
  92. Урок 92. 00:18:11
    React.js Front End Code Walkthrough
  93. Урок 93. 00:12:33
    API Server Setup
  94. Урок 94. 00:15:33
    GET /planets
  95. Урок 95. 00:07:23
    CORS Middleware
  96. Урок 96. 00:04:42
    Models vs Controllers vs Routers
  97. Урок 97. 00:05:31
    The Planets Model
  98. Урок 98. 00:15:41
    Loading Data On Startup
  99. Урок 99. 00:13:45
    Automating Full Stack Applications With NPM
  100. Урок 100. 00:12:16
    Serving React.js Front End In Production
  101. Урок 101. 00:08:45
    Logging Requests With Morgan
  102. Урок 102. 00:12:57
    The Launches Model
  103. Урок 103. 00:16:57
    GET /launches
  104. Урок 104. 00:05:59
    Serving Applications With Client Side Routing
  105. Урок 105. 00:08:50
    Working With Data Models: Building a Data Access Layer
  106. Урок 106. 00:13:16
    POST /launches: Creating Launches 1
  107. Урок 107. 00:10:42
    POST /launches: Creating Launches 2
  108. Урок 108. 00:12:40
    POST /launches: Validation For POST Requests
  109. Урок 109. 00:13:40
    Connecting POST /launches With Front End Dashboard
  110. Урок 110. 00:13:06
    DELETE /launches: Aborting a Launch 1
  111. Урок 111. 00:12:01
    DELETE /launches: Aborting a Launch 2
  112. Урок 112. 00:11:43
    Updating Our Architecture Diagram
  113. Урок 113. 00:03:27
    Testing In Node
  114. Урок 114. 00:14:22
    Testing APIs With Jest
  115. Урок 115. 00:08:04
    Testing API Endpoints With Supertest: GET
  116. Урок 116. 00:09:10
    Testing API Endpoints With Supertest: POST
  117. Урок 117. 00:06:49
    Testing API Endpoints With Supertest: Error Cases
  118. Урок 118. 00:04:16
    Node Server Performance
  119. Урок 119. 00:10:21
    Building A Simple Blocking Server
  120. Урок 120. 00:08:48
    Real Life Blocking Functions
  121. Урок 121. 00:03:19
    Running Multiple Node Processes
  122. Урок 122. 00:04:18
    The Node Cluster Module
  123. Урок 123. 00:12:28
    Clustering In Action
  124. Урок 124. 00:07:41
    Maximizing Cluster Performance
  125. Урок 125. 00:05:37
    Load Balancing
  126. Урок 126. 00:02:27
    The PM2 Tool
  127. Урок 127. 00:09:39
    Using PM2 To Create Clusters
  128. Урок 128. 00:06:11
    Managing Live Clusters With PM2
  129. Урок 129. 00:03:47
    Zero Downtime Restart
  130. Урок 130. 00:08:07
    Improving Performance Of Our NASA Project
  131. Урок 131. 00:08:22
    Worker Threads
  132. Урок 132. 00:08:16
    Worker Threads In Action
  133. Урок 133. 00:03:47
    Introduction to Databases
  134. Урок 134. 00:08:11
    Comparing SQL vs NoSQL
  135. Урок 135. 00:03:46
    Database Schemas & Schemaless Databases
  136. Урок 136. 00:05:33
    Choosing a Database for our NASA Project
  137. Урок 137. 00:08:19
    SQL vs MongoDB: Trends and Object-Relational Impedance Mismatch
  138. Урок 138. 00:14:20
    SQL vs MongoDB: Schemas, References, and ACID Transactions
  139. Урок 139. 00:12:56
    Setting up MongoDB Atlas
  140. Урок 140. 00:08:55
    Connecting to MongoDB
  141. Урок 141. 00:05:25
    Mongoose
  142. Урок 142. 00:15:19
    Creating Mongoose Schema for Launches
  143. Урок 143. 00:05:30
    Exercise: Creating Mongoose Schema for Planets
  144. Урок 144. 00:04:31
    Creating Models From Schemas
  145. Урок 145. 00:04:16
    Mongoose Models vs MVC Models
  146. Урок 146. 00:08:10
    Inserting And Updating Documents
  147. Урок 147. 00:06:49
    Finding Documents
  148. Урок 148. 00:08:21
    The Upsert Operation
  149. Урок 149. 00:04:53
    Exploring Data Using Atlas
  150. Урок 150. 00:05:10
    Updating Project Architecture
  151. Урок 151. 00:03:52
    ObjectIDs
  152. Урок 152. 00:03:31
    Excluding Fields From The Response
  153. Урок 153. 00:04:52
    Saving Launches
  154. Урок 154. 00:02:58
    Listing All Launches
  155. Урок 155. 00:10:57
    Referential Integrity
  156. Урок 156. 00:07:29
    Auto Increment In MongoDB
  157. Урок 157. 00:05:59
    Getting Latest Flight Number
  158. Урок 158. 00:09:01
    Scheduling New Launches
  159. Урок 159. 00:07:11
    Investigating A Mongoose Mystery
  160. Урок 160. 00:12:55
    Aborting Launches
  161. Урок 161. 00:15:03
    Updating Tests For Mongoose 1
  162. Урок 162. 00:10:01
    Updating Tests For Mongoose 2
  163. Урок 163. 00:02:48
    Working With SpaceX
  164. Урок 164. 00:03:23
    The SpaceX API
  165. Урок 165. 00:09:10
    Versioning Node APIs
  166. Урок 166. 00:01:01
    Updating Our API Tests
  167. Урок 167. 00:05:40
    Exploring SpaceX Launches API
  168. Урок 168. 00:13:05
    Running Search Queries
  169. Урок 169. 00:14:52
    Loading SpaceX Data In Our API
  170. Урок 170. 00:11:57
    Mapping SpaceX Data To Our Database
  171. Урок 171. 00:08:00
    Using Paginated APIs
  172. Урок 172. 00:08:19
    Minimizing API Load
  173. Урок 173. 00:06:41
    Persisting SpaceX Launches
  174. Урок 174. 00:07:58
    Paginating Our Endpoints 1
  175. Урок 175. 00:15:28
    Paginating Our Endpoints 2
  176. Урок 176. 00:03:49
    Sorting Paginated Data
  177. Урок 177. 00:03:34
    Cleaning Up Launch Data
  178. Урок 178. 00:09:05
    Managing Secrets With Dotenv
  179. Урок 179. 00:05:10
    Securing Leaked Secrets
  180. Урок 180. 00:03:44
    Security and Authentication Overview
  181. Урок 181. 00:06:29
    Encrypted Connections with SSL and TLS
  182. Урок 182. 00:05:43
    Digital Certificates, Signing, and Man In The Middle Attacks
  183. Урок 183. 00:04:19
    Setting Up Our Security Example
  184. Урок 184. 00:16:18
    HTTPS With Node, Self Signed Certificates, and Public Key Cryptography
  185. Урок 185. 00:09:47
    Helmet.js
  186. Урок 186. 00:07:29
    Authentication vs Authorization
  187. Урок 187. 00:05:12
    Social Sign In
  188. Урок 188. 00:11:04
    API Keys
  189. Урок 189. 00:14:33
    JWT Tokens
  190. Урок 190. 00:05:41
    The OAuth Standard
  191. Урок 191. 00:06:35
    OAuth 2.0 Authorization Code Flow
  192. Урок 192. 00:15:16
    OAuth In Action with Single Sign On
  193. Урок 193. 00:14:12
    Registering with the Google Authorization Server
  194. Урок 194. 00:11:08
    Authentication Endpoints With Middleware
  195. Урок 195. 00:03:25
    Passport.js
  196. Урок 196. 00:08:24
    Dotenv for Client Secrets
  197. Урок 197. 00:11:12
    Authentication With Google And OAuth 1
  198. Урок 198. 00:11:46
    Authentication With Google And OAuth 2
  199. Урок 199. 00:06:55
    Cookie Based Authentication
  200. Урок 200. 00:03:34
    Sessions
  201. Урок 201. 00:09:05
    Server VS Client Side Sessions With Cookies
  202. Урок 202. 00:09:51
    Session Middleware in Express
  203. Урок 203. 00:12:35
    Setting Up OAuth Cookie Session
  204. Урок 204. 00:13:03
    Reading and Writing the OAuth Session 1
  205. Урок 205. 00:06:45
    Reading and Writing the OAuth Session 2
  206. Урок 206. 00:07:54
    Restricting Access to Endpoints
  207. Урок 207. 00:07:13
    Implementing Logout
  208. Урок 208. 00:05:12
    Experimenting With Fake Sessions
  209. Урок 209. 00:05:55
    Wrap Up and Next Steps
  210. Урок 210. 00:06:42
    Introduction to CI and CD
  211. Урок 211. 00:08:24
    Continuous Integration
  212. Урок 212. 00:09:38
    Continuous Development
  213. Урок 213. 00:06:01
    Continuous Deployment
  214. Урок 214. 00:04:27
    Pipelines
  215. Урок 215. 00:09:43
    GitHub Actions
  216. Урок 216. 00:05:37
    Setting Up GitHub Actions
  217. Урок 217. 00:12:03
    Continuous Integration: Build Pipeline
  218. Урок 218. 00:08:38
    Build Pipeline In Action
  219. Урок 219. 00:03:08
    GitHub Actions Marketplace
  220. Урок 220. 00:11:21
    Continuous Integration: Test Pipeline
  221. Урок 221. 00:05:19
    Mocking Out Databases
  222. Урок 222. 00:10:19
    Databases With Continuous Integration
  223. Урок 223. 00:08:51
    Populating Data For Continuous Integration
  224. Урок 224. 00:02:15
    Deploying to the Cloud
  225. Урок 225. 00:03:59
    Serverless vs Containers
  226. Урок 226. 00:04:17
    Virtual Machines
  227. Урок 227. 00:05:00
    What is a Container?
  228. Урок 228. 00:03:29
    Installing Docker
  229. Урок 229. 00:05:39
    Running Our first Docker Container
  230. Урок 230. 00:01:40
    Your DockerHub Account
  231. Урок 231. 00:14:03
    Creating a Dockerfile
  232. Урок 232. 00:13:23
    Improving Our Dockerfile With Layers
  233. Урок 233. 00:02:17
    Updating Our API URL
  234. Урок 234. 00:05:37
    Building NASA Project Docker Image
  235. Урок 235. 00:04:30
    Running NASA Project in a Container
  236. Урок 236. 00:03:47
    Pushing Images to Docker Hub
  237. Урок 237. 00:06:29
    Exploring Amazon Web Services
  238. Урок 238. 00:07:51
    Creating an EC2 Instance 1
  239. Урок 239. 00:13:11
    Creating an EC2 Instance 2: Security
  240. Урок 240. 00:02:59
    What is SSH?
  241. Урок 241. 00:07:49
    Connecting To Our EC2 Instance With SSH
  242. Урок 242. 00:05:46
    Setting Up Our EC2 Server
  243. Урок 243. 00:10:39
    Deploying Our NASA API
  244. Урок 244. 00:08:04
    GraphQL Overview
  245. Урок 245. 00:08:16
    Our First GraphQL Query
  246. Урок 246. 00:05:48
    GraphQL Queries In Action
  247. Урок 247. 00:10:53
    GraphQL vs REST: Over-fetching & Under-fetching
  248. Урок 248. 00:10:09
    GraphQL vs REST Summary
  249. Урок 249. 00:03:25
    Exploring GraphQL Implementations
  250. Урок 250. 00:11:02
    GraphQL In Node
  251. Урок 251. 00:04:26
    GraphiQL
  252. Урок 252. 00:16:02
    Designing An E-Commerce Schema
  253. Урок 253. 00:03:40
    GraphQL Tools
  254. Урок 254. 00:14:02
    Modularizing Large GraphQL Projects: Schemas
  255. Урок 255. 00:09:02
    Resolvers
  256. Урок 256. 00:09:28
    Modularizing Large GraphQL Projects: Resolvers
  257. Урок 257. 00:10:21
    Filtering with Queries and Resolvers
  258. Урок 258. 00:05:31
    Exercise: Query Products By ID
  259. Урок 259. 00:06:41
    Mutations In Action
  260. Урок 260. 00:10:11
    Implementing Mutations on the Server
  261. Урок 261. 00:10:59
    Exercise: Add New Product Review
  262. Урок 262. 00:07:16
    GraphQL With Apollo
  263. Урок 263. 00:13:20
    Building an Apollo Server With Node.js
  264. Урок 264. 00:02:12
    Introduction to Sockets
  265. Урок 265. 00:03:58
    Polling
  266. Урок 266. 00:02:59
    What is a Socket?
  267. Урок 267. 00:05:02
    Sockets VS Polling
  268. Урок 268. 00:05:26
    WebSockets
  269. Урок 269. 00:03:21
    Introduction to socket.io
  270. Урок 270. 00:08:44
    socket.io Client and Server APIs
  271. Урок 271. 00:03:32
    Multiplayer Pong Overview
  272. Урок 272. 00:11:58
    Reviewing Our Pong Front End
  273. Урок 273. 00:07:39
    Multiplayer Pong Message Sequence
  274. Урок 274. 00:04:31
    Setting Up a socket.io Server
  275. Урок 275. 00:04:04
    Connecting to socket.io
  276. Урок 276. 00:06:39
    Identifying Connected Clients
  277. Урок 277. 00:03:09
    Listening for Events in the Pong Server
  278. Урок 278. 00:02:47
    Broadcasting Events
  279. Урок 279. 00:07:16
    Handling Events in the Pong Client
  280. Урок 280. 00:09:21
    Implementing the Game Logic: Paddle
  281. Урок 281. 00:08:47
    Implementing the Game Logic: Ball
  282. Урок 282. 00:05:24
    What Happens When You Disconnect?
  283. Урок 283. 00:11:46
    Using Socket.io with Express
  284. Урок 284. 00:06:06
    Namespaces
  285. Урок 285. 00:10:40
    Rooms
  286. Урок 286. 00:06:01
    Why Deno?
  287. Урок 287. 00:05:26
    Deno Runtime And V8 Engine
  288. Урок 288. 00:04:42
    Deno Installation
  289. Урок 289. 00:05:34
    MAC/LINUX Installation Tips
  290. Урок 290. 00:01:18
    WINDOWS Installation Tips
  291. Урок 291. 00:05:16
    Setting Up Our Developer Environment
  292. Урок 292. 00:08:19
    Our First Deno App
  293. Урок 293. 00:01:00
    The Most Important Video
  294. Урок 294. 00:12:40
    Deno Internals And Architecture
  295. Урок 295. 00:06:51
    Deno Metrics
  296. Урок 296. 00:04:02
    Exercise: Deno Architecture
  297. Урок 297. 00:09:59
    Deno Game Changers
  298. Урок 298. 00:07:57
    Deno Game Changers 2
  299. Урок 299. 00:02:09
    Will Deno Kill NodeJS?
  300. Урок 300. 00:04:09
    Single Executable To Rule Them All
  301. Урок 301. 00:08:10
    Deno Security
  302. Урок 302. 00:06:25
    Deno Permissions
  303. Урок 303. 00:03:10
    Deno Permissions 2
  304. Урок 304. 00:05:11
    Deno Permissions 3
  305. Урок 305. 00:05:29
    JavaScript Engine
  306. Урок 306. 00:00:57
    Exercise: Javascript Engine
  307. Урок 307. 00:04:06
    Inside the Engine
  308. Урок 308. 00:02:34
    Exercise: JS Engine For All
  309. Урок 309. 00:06:22
    Interpreters and Compilers
  310. Урок 310. 00:08:57
    Inside the V8 Engine
  311. Урок 311. 00:04:16
    Comparing Other Languages
  312. Урок 312. 00:08:54
    Writing Optimized Code
  313. Урок 313. 00:03:16
    WebAssembly
  314. Урок 314. 00:14:38
    Call Stack and Memory Heap
  315. Урок 315. 00:03:22
    Stack Overflow
  316. Урок 316. 00:04:31
    Garbage Collection
  317. Урок 317. 00:06:35
    Memory Leaks
  318. Урок 318. 00:01:59
    Single Threaded
  319. Урок 319. 00:02:41
    Exercise: Issue With Single Thread
  320. Урок 320. 00:14:08
    Javascript Runtime
  321. Урок 321. 00:06:28
    Node.js
  322. Урок 322. 00:04:52
    Section Overview
  323. Урок 323. 00:22:27
    Promises
  324. Урок 324. 00:15:23
    ES8 - Async Await
  325. Урок 325. 00:05:22
    ES9 (ES2018)
  326. Урок 326. 00:11:12
    ES9 (ES2018) - Async
  327. Урок 327. 00:06:56
    Job Queue
  328. Урок 328. 00:10:01
    Parallel, Sequence and Race
  329. Урок 329. 00:04:23
    ES2020: allSettled()
  330. Урок 330. 00:11:28
    Threads, Concurrency and Parallelism
  331. Урок 331. 00:02:04
    Pong Project Overview
  332. Урок 332. 00:15:51
    JS - Create Canvas
  333. Урок 333. 00:17:45
    JS - RequestAnimationFrame
  334. Урок 334. 00:13:15
    JS - Game Over
  335. Урок 335. 00:05:18
    Code Review
  336. Урок 336. 00:01:28
    Introduction To TypeScript
  337. Урок 337. 00:11:51
    Dynamic vs Static Typing
  338. Урок 338. 00:03:19
    Strongly vs Weakly Typed
  339. Урок 339. 00:09:46
    Static Typing In JavaScript
  340. Урок 340. 00:03:51
    OPTIONAL: Installing TypeScript Compiler
  341. Урок 341. 00:11:34
    TypeScript
  342. Урок 342. 00:03:17
    TypeScript 2
  343. Урок 343. 00:07:25
    TypeScript 3
  344. Урок 344. 00:05:39
    TypeScript 4
  345. Урок 345. 00:06:40
    TypeScript 5
  346. Урок 346. 00:04:49
    TypeScript 6
  347. Урок 347. 00:03:35
    TypeScript 7
  348. Урок 348. 00:06:05
    TypeScript 8
  349. Урок 349. 00:01:22
    TypeScript 9
  350. Урок 350. 00:01:24
    TypeScript 10
  351. Урок 351. 00:05:35
    Exercise: Building Amazon
  352. Урок 352. 00:05:29
    Exercise: Building Amazon 2
  353. Урок 353. 00:05:38
    5 Types Of Databases
  354. Урок 354. 00:01:12
    Exercise: What Is A Database?
  355. Урок 355. 00:01:55
    SQL Playground
  356. Урок 356. 00:02:18
    What Is SQL?
  357. Урок 357. 00:06:28
    What Is A Query?
  358. Урок 358. 00:03:25
    Imperative vs Declarative
  359. Урок 359. 00:02:22
    History of SQL
  360. Урок 360. 00:04:26
    SQL Standards
  361. Урок 361. 00:03:46
    Tables
  362. Урок 362. 00:04:08
    Columns
  363. Урок 363. 00:02:28
    Rows
  364. Урок 364. 00:05:04
    Primary And Foreign Keys
  365. Урок 365. 00:10:36
    Relational vs NoSQL, PostgreSQL vs MongoDB Databases
  366. Урок 366. 00:04:20
    Scalability
  367. Урок 367. 00:03:05
    Sharding