1. Урок 1. 00:01:19
    Introduction
  2. Урок 2. 00:03:48
    The Goal of this Course
  3. Урок 3. 00:01:37
    Understanding the Role of JavaScript
  4. Урок 4. 00:05:17
    The World of JavaScript
  5. Урок 5. 00:02:12
    Using Vanilla JavaScript Understanding Its Limitations 13
  6. Урок 6. 00:04:40
    Using Vanilla JavaScript Understanding Its Limitations 23
  7. Урок 7. 00:02:28
    Using Vanilla JavaScript Understanding Its Limitations 33
  8. Урок 8. 00:07:01
    Analyzing the Vanilla JavaScript Solution
  9. Урок 9. 00:02:56
    Improving the App with jQuery
  10. Урок 10. 00:01:20
    More JavaScript Libraries Adding Lodash
  11. Урок 11. 00:02:50
    The Role of JavaScript Libraries
  12. Урок 12. 00:15:02
    Libraries vs Frameworks
  13. Урок 13. 00:03:55
    Using Vue.js A JavaScript Framework
  14. Урок 14. 00:03:56
    Understand other Parts of the JavaScript World
  15. Урок 15. 00:02:59
    JavaScript Versions and Languages - ES6 and TypeScript
  16. Урок 16. 00:00:34
    Course Structure
  17. Урок 17. 00:02:37
    Module Introduction
  18. Урок 18. 00:02:46
    JS Frameworks in Fullstack Applications
  19. Урок 19. 00:04:29
    JS Frameworks in Single-Page-Applications
  20. Урок 20. 00:01:50
    An Example for a Framework in a Fullstack Application
  21. Урок 21. 00:02:31
    An Example for a Framework running a Single-Page-Application
  22. Урок 22. 00:04:07
    Fullstack Approach - Pros and Cons
  23. Урок 23. 00:04:28
    Single-Page-Application - Pros and Cons
  24. Урок 24. 00:03:37
    Prerequisites for the Different JS Frameworks
  25. Урок 25. 00:01:33
    Module Introduction
  26. Урок 26. 00:03:23
    Creating a Basic Vue.js Application
  27. Урок 27. 00:02:06
    In a Nutshell How Vue.js Works
  28. Урок 28. 00:03:57
    Handling Events and Updating the DOM
  29. Урок 29. 00:03:15
    Rendering Content Conditionally
  30. Урок 30. 00:03:27
    Outputting Lists
  31. Урок 31. 00:03:38
    Binding HTML Attributes Properties to Data
  32. Урок 32. 00:03:24
    Styling Elements Dynamically
  33. Урок 33. 00:01:45
    Setting CSS Classes Dynamically
  34. Урок 34. 00:01:39
    Using Multiple Vue Instances
  35. Урок 35. 00:01:55
    Limitations of Multiple Vue Instances
  36. Урок 36. 00:04:31
    Creating and Using Components
  37. Урок 37. 00:01:42
    Passing Data into Components
  38. Урок 38. 00:03:15
    Emitting Custom Events in Components
  39. Урок 39. 00:01:37
    Template Restrictions
  40. Урок 40. 00:01:55
    Two-Way-Binding to Input Fields
  41. Урок 41. 00:02:20
    Time to Practice - Vue.js - Problem
  42. Урок 42. 00:15:34
    Time to Practice - Vue.js - Solution
  43. Урок 43. 00:03:16
    Creating Vue.js Projects with the Vue CLI
  44. Урок 44. 00:01:32
    Why do we need Node.js and NPM
  45. Урок 45. 00:03:11
    Using the Vue CLI to Create Projects
  46. Урок 46. 00:04:50
    Understanding the Project Folder
  47. Урок 47. 00:03:06
    Understanding .vue Files
  48. Урок 48. 00:02:26
    How the Application Gets Rendered
  49. Урок 49. 00:03:42
    Creating Global Components with .vue Files
  50. Урок 50. 00:02:25
    Creating Local Components
  51. Урок 51. 00:01:19
    Scoping Styles to Components
  52. Урок 52. 00:01:08
    Creating a Single Page Application SPA
  53. Урок 53. 00:05:57
    Adding Routing to the Application
  54. Урок 54. 00:01:31
    Linking with router-link
  55. Урок 55. 00:02:15
    Routing and the Server-Side
  56. Урок 56. 00:01:10
    Wrap Up
  57. Урок 57. 00:00:58
    Module Introduction
  58. Урок 58. 00:02:48
    The Big Picture
  59. Урок 59. 00:03:38
    The Role of Node.js and NPM
  60. Урок 60. 00:02:30
    Why do we need a Development Server
  61. Урок 61. 00:04:00
    How Webpack Works Entry Output
  62. Урок 62. 00:04:24
    How Webpack Works Modules Rules Plugins
  63. Урок 63. 00:00:58
    Wrap Up
  64. Урок 64. 00:01:14
    Module Introduction
  65. Урок 65. 00:04:22
    Using React.js to Create a Basic App.
  66. Урок 66. 00:03:45
    Understanding How React.js Works and JSX
  67. Урок 67. 00:01:20
    Outputting Dynamic Content
  68. Урок 68. 00:04:22
    Handling Events and Updating the DOM
  69. Урок 69. 00:02:48
    Creating a First Component
  70. Урок 70. 00:01:51
    Passing Data into Components Props
  71. Урок 71. 00:02:36
    Creating Components using ES6 Classes
  72. Урок 72. 00:05:02
    Using State in React.js Components
  73. Урок 73. 00:02:18
    What Happens Behind the Scenes
  74. Урок 74. 00:03:18
    Rendering Conditional Content
  75. Урок 75. 00:05:18
    Outputting Lists
  76. Урок 76. 00:03:12
    Setting Styles Dynamically
  77. Урок 77. 00:02:05
    Setting CSS Classes Dynamically
  78. Урок 78. 00:03:24
    User Input Two-Way-Binding
  79. Урок 79. 00:02:45
    Using Multiple Components
  80. Урок 80. 00:01:13
    Dumb Components
  81. Урок 81. 00:04:11
    Passing Data from Child to Parent
  82. Урок 82. 00:02:35
    Time to Practice - React.js - Problem
  83. Урок 83. 00:24:00
    Time to Practice - React.js - Solution
  84. Урок 84. 00:01:23
    Switching to a Local Setup SPA
  85. Урок 85. 00:02:34
    Using the create-react-app Package
  86. Урок 86. 00:02:48
    Understanding the Created Project
  87. Урок 87. 00:02:38
    Using the Local Setup
  88. Урок 88. 00:06:36
    Adding React Router and Routes for the App
  89. Урок 89. 00:01:47
    Adding Links
  90. Урок 90. 00:01:20
    The React Router and a Server
  91. Урок 91. 00:01:24
    Wrap Up
  92. Урок 92. 00:01:07
    Module Introduction
  93. Урок 93. 00:01:45
    What Its Good at and What Its Not Good At
  94. Урок 94. 00:00:49
    Understanding Angular Versioning
  95. Урок 95. 00:03:00
    TypeScript
  96. Урок 96. 00:03:47
    Creating an Angular Project with the CLI
  97. Урок 97. 00:03:31
    Understanding the Project Structure
  98. Урок 98. 00:03:01
    Understanding the Role of Components and the App Component
  99. Урок 99. 00:05:16
    How the App Starts
  100. Урок 100. 00:02:05
    Understanding the App Module
  101. Урок 101. 00:01:31
    Outputting Data with String Interpolation
  102. Урок 102. 00:02:41
    Handling Events
  103. Урок 103. 00:03:26
    Rendering Content Conditionally
  104. Урок 104. 00:04:03
    Outputting Lists
  105. Урок 105. 00:02:57
    Binding Data to HTML and other Properties
  106. Урок 106. 00:04:23
    Adding Dynamic Styles to Elements
  107. Урок 107. 00:02:46
    Adding CSS Classes Dynamically
  108. Урок 108. 00:01:00
    When to use the Syntax
  109. Урок 109. 00:06:09
    Using Multiple Components
  110. Урок 110. 00:02:04
    Passing Data Into Components
  111. Урок 111. 00:05:40
    Emitting Custom Events From Components
  112. Урок 112. 00:03:04
    Using Two-Way-Binding
  113. Урок 113. 00:01:53
    Time to Practice - Angular - Problem
  114. Урок 114. 00:15:10
    Time to Practice - Angular - Solution
  115. Урок 115. 00:01:58
    Using the CLI to Generate Components
  116. Урок 116. 00:01:56
    Nesting Multiple Components
  117. Урок 117. 00:01:17
    Scoping Styles to Components
  118. Урок 118. 00:04:52
    Adding Routing Routes
  119. Урок 119. 00:01:56
    Adding Links
  120. Урок 120. 00:01:09
    The Angular Router and the Server
  121. Урок 121. 00:01:31
    Wrap Up
  122. Урок 122. 00:01:12
    Module Introduction
  123. Урок 123. 00:03:43
    Possible Comparison Dimensions
  124. Урок 124. 00:07:54
    Dimension 1 The Learning Curve
  125. Урок 125. 00:06:53
    Dimension 2 Downscaling Fullstack Applications
  126. Урок 126. 00:10:41
    Dimension 3 Upscaling SPAs
  127. Урок 127. 00:09:00
    Dimension 4 Performance
  128. Урок 128. 00:08:13
    Dimension 5 Ease of Deployment The Way from Dev to Production
  129. Урок 129. 00:12:37
    Dimension 6 Popularity Job Market
  130. Урок 130. 00:02:31
    The Verdict
  131. Урок 131. 00:01:41
    ...What About jQuery
  132. Урок 132. 00:01:44
    Course Roundup