{"id":26091,"date":"2020-12-04T19:42:29","date_gmt":"2020-12-05T03:42:29","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=26091"},"modified":"2022-07-20T08:43:57","modified_gmt":"2022-07-20T15:43:57","slug":"redux-guides","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/redux-guides\/","title":{"rendered":"Redux: Courses, Training, and Other Resources"},"content":{"rendered":"\n<p>If you\u2019ve looked into different frontend frameworks, the phrase &#8220;React Redux&#8221; has probably come up. What is React\/Redux? Are they the same thing?<\/p>\n\n\n\n<p>Redux is a JavaScript library for managing an application\u2019s state. It works alongside another JavaScript library, such as React, to contain the application\u2019s state.&nbsp;<\/p>\n\n\n\n<p>Say you\u2019re building an e-commerce app. Most likely, the cart component tracks the items in the app\u2019s state. Redux manages the cart component\u2019s state as the single source of truth.<\/p>\n\n\n\n<p>What single source of truth means is Redux keeps track of the individual React component&#8217;s states. This is helpful because some apps are complex and searching inside individual React components for their state can be overwhelming.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Redux?<\/h2>\n\n\n\n<p>In the introduction, we established that although you\u2019ll hear the words \u201cReact\u201d and \u201cRedux\u201d together, they are separate JavaScript libraries. Redux is designed to work alongside other libraries, such as React. React has its own state management system, but as with our e-commerce example app, state management can become confusing.<\/p>\n\n\n\n<p>When that much data is changing over time, Redux is a helpful tool to be able to access the data from one location. That location, referred to as a store, organizes the application&#8217;s state and makes it available to individual components.<\/p>\n\n\n\n<p>Redux comes with its own methods to access state. The connect() method allows the developer to connect a React component to the Redux store. With a few lines of code, the component now has access to the state of the entire app.&nbsp;<\/p>\n\n\n\n<p>Now that we have a better idea of what Redux is, let&#8217;s see how we can use Redux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Redux used for?<\/h2>\n\n\n\n<p>To better understand the benefits of Redux, let\u2019s take a closer look at an app\u2019s state. In React, the state object stores the components&#8217; property values. These values are then rendered on the user&#8217;s screen. If the state changes, the component re-renders with the new values.<\/p>\n\n\n\n<p>This means each React class component can manage its own state. Thinking back to our e-commerce app, we will have a lot of components and state to track. Redux makes managing state much simpler.<\/p>\n\n\n\n<p>Redux solves the issue of tracking each individual component\u2019s state by creating a store in which all state resides. A developer can access the entire application\u2019s state through the Redux store. Redux uses reducers to add and remove data from the store. A handy combineReducers() method accesses all reducers in the store. The connect() method grants all components access to the Redux store.<\/p>\n\n\n\n<p>Above outlines the basic flow of data without diving too deep into specifics. If you want to take a deeper dive into Redux, let\u2019s talk about learning Redux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Learning Redux<\/h2>\n\n\n\n<p>When shopping online, there are many things happening behind the scenes from adding an item to a shopping cart and checking out. Most sites have the ability to add items, remove items, clear whole orders, and check out.<\/p>\n\n\n\n<p>Who keeps track of all of this? As discussed above, state refers to the application\u2019s changing data. An e-commerce site will have a lot of changing data from so many users buying from the site. Redux keeps track of the entire application\u2019s state in a single place known as a store.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How Long Does it Take to Learn Redux?<\/h2>\n\n\n\n<p>Before deciding to learn Redux, ask yourself how well you know React or a similar library? If your React knowledge is based in a solid understanding of JavaScript fundamentals then go for it!<\/p>\n\n\n\n<p>Learning Redux can be done in a matter of hours, but like all new things, it will take some time to get used to. Actions like sending data to the Redux store with multiple reducers will take a little practice.<\/p>\n\n\n\n<p>Redux can be learned and implemented quickly inside a few days with daily practice.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Learn Redux: Step-by-Step<\/h2>\n\n\n\n<p>Here are some steps to consider before taking on Redux:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Learn JavaScript fundamentals. React is a JavaScript library so it makes sense to be fluent in JavaScript.<\/li><li>Familiarize yourself with JSX. This is how you write components in React. JSX combines HTML and JavaScript in its syntax.<\/li><li>Understand React basics. Knowing the difference between state and props, React data flow, class components vs functional components will prove essential in quickly implementing Redux.<\/li><li>Knowing how much state will change in your application. If there is not much state change, use React\u2019s built-in state management. Otherwise, if your application\u2019s state changes frequently across multiple components, using Redux will help manage the state.<\/li><li>Build a few small React projects and practice hooking Redux into them. Practice makes progress and why not beef up your portfolio while learning Redux?<\/li><\/ol>\n\n\n\n<p>Once the basics of frontend web development are mastered, learning Redux is quick. It may take a few tries to get everything working together properly, but it is a painless process.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Best Redux Courses and Training<\/h2>\n\n\n\n<p>As online learning gains popularity, the quality of resources to learn web development appreciates as well. Learning Redux and implementing it into your React web app is meant to be quick, so you can get back to building your app. Below is a list of the top Redux courses for beginner and intermediate developers to learn Redux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Online Redux Courses<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.udemy.com\/share\/101WcY\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Modern React with Redux<\/a><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Provider: Udemy<\/li><li>Instructor: Stephen Grider<\/li><li>Cost: $119<\/li><li>Audience: Intermediate<\/li><\/ul>\n\n\n\n<p>Udemy has some fantastic instructors with in-depth lessons. Stephen Grider is a React veteran with a skill for clearly explaining the React process. This course is continually updated to be the most modern implementation of Redux in a React app available.<\/p>\n\n\n\n<p>Grider guides you in building a single page app in 52 hours. With a clear teaching style, you\u2019ll understand the lessons and walk away from this course as a more advanced developer. He not only covers React\/Redux basics, but talks about Babel, NPM, Webpack, and throws in a little about React hooks!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/ui.dev\/redux\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">UI Dev Redux<\/a><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Provider: UI Dev<\/li><li>Cost: $350 per year ($40 monthly)<\/li><li>Audience: Intermediate<\/li><\/ul>\n\n\n\n<p>The Redux course at UI Dev takes a project based approach. Consisting of several small projects per lesson, it aims to teach through actively coding. The Redux course \u2013 packed with lessons, quizzes, and growing projects \u2013 progresses from fundamentals to real world implementation.<\/p>\n\n\n\n<p>UI Dev continually updates their courses, so they are always current. The Redux course clocks in at 31 topics, 357 minutes of video, 1,182 words of text, six quizzes, and three projects. Here, you can learn Redux in a couple of days.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.udemy.com\/share\/101xwA\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">React and Redux Masterclass<\/a><\/h3>\n\n\n\n<ul class=\"wp-block-list\"><li>Provider: Udemy<\/li><li>Cost: Free<\/li><li>Audience: Intermediate<\/li><\/ul>\n\n\n\n<p>The Redux masterclass on Udemy assumes you have prior knowledge in modern JavaScript and at least some familiarity with React. Taking just two hours and six minutes to complete, this may be the most accessible Redux courses.<\/p>\n\n\n\n<p>This course covers both React and Redux basics, it will get beginning React developers up to speed quickly.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Online Resources<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/egghead.io\/courses\/getting-started-with-redux\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Getting Started with Redux<\/a><\/h3>\n\n\n\n<p>Redux creator Dan Abramov shares a full video series on how to get started with Redux. He uses an example app of a to-do list to clearly demonstrate Redux capabilities.<\/p>\n\n\n\n<p>Learning from the creator himself is a great way to understand the thought process behind how Redux functions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/redux.js.org\/tutorials\/essentials\/part-1-overview-concepts\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Official Redux Tutorial<\/a><\/h3>\n\n\n\n<p>One of the great things about Redux is how the official documentation is written. It includes a getting started guide as well as an official tutorial section to help you get Redux up and running quickly.<\/p>\n\n\n\n<p>It does, however, assume you have prior knowledge of modern JavaScript (ES6 syntax, AJAX requests) and a working understanding of React.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.valentinog.com\/blog\/redux\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">React Redux Tutorial for Beginners: A 2020 Guide<\/a><\/h3>\n\n\n\n<p>A Redux tutorial for complete beginners by Valentino Gagliardi outlines the basics from \u201cWhat is Redux?\u201d to \u201cWhat problem does Redux solve?\u201d The guide is split up into several easy to read sections. Reading this guide from start to finish will take about an hour or so, but you\u2019ll be on your way to understanding Redux.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Should I learn Redux?<\/h2>\n\n\n\n<p>Learning Redux as an intermediate developer with fluency in modern JavaScript and at least some familiarity with React is a relatively quick process. Something to consider is the application you\u2019re building. Is it a large, complex app? Or is it a compact React app?<\/p>\n\n\n\n<p>If your React app has few components and not a lot of data changes, then use React\u2019s built-in state management. Sometimes adding libraries can be redundant and overly complicate your app.<\/p>\n\n\n\n<p>If the app is a complex app with several data changes happening throughout, then Redux is a fantastic tool to learn. It will keep these state changes organized and accessible through its singular store.<\/p>\n","protected":false},"excerpt":{"rendered":"If you\u2019ve looked into different frontend frameworks, the phrase \"React Redux\" has probably come up. What is React\/Redux? Are they the same thing? Redux is a JavaScript library for managing an application\u2019s state. It works alongside another JavaScript library, such as React, to contain the application\u2019s state.&nbsp; Say you\u2019re building an e-commerce app. Most likely,&hellip;","protected":false},"author":104,"featured_media":2789,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-26091","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-javascript"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"JavaScript","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Redux: Courses, Training, and Other Resources | Career Karma<\/title>\n<meta name=\"description\" content=\"A brief introduction to the JavaScritp library Redux and how to best learn it.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/redux-guides\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Redux: Courses, Training, and Other Resources\" \/>\n<meta property=\"og:description\" content=\"A brief introduction to the JavaScritp library Redux and how to best learn it.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/redux-guides\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-05T03:42:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T15:43:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ryan Manchester\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ryan Manchester\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/\"},\"author\":{\"name\":\"Ryan Manchester\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"headline\":\"Redux: Courses, Training, and Other Resources\",\"datePublished\":\"2020-12-05T03:42:29+00:00\",\"dateModified\":\"2022-07-20T15:43:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/\"},\"wordCount\":1452,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/code-coding-connection-943096.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/\",\"name\":\"Redux: Courses, Training, and Other Resources | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/code-coding-connection-943096.jpg\",\"datePublished\":\"2020-12-05T03:42:29+00:00\",\"dateModified\":\"2022-07-20T15:43:57+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\"},\"description\":\"A brief introduction to the JavaScritp library Redux and how to best learn it.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/code-coding-connection-943096.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/06\\\/code-coding-connection-943096.jpg\",\"width\":1200,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/redux-guides\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/javascript\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Redux: Courses, Training, and Other Resources\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/92fd52a503f77fc058ec2d0666da9bd5\",\"name\":\"Ryan Manchester\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/ryan-manchester-150x150.jpg\",\"caption\":\"Ryan Manchester\"},\"description\":\"Ryan is a technical writer at Career Karma, where he covers programming languages, technology, and web development. The Texas native earned his Bachelor's of Music Composition from the University of North Texas. Ryan is currently pursuing further education in web development, aiming to graduate from Flatiron School with a certification in full stack web development. Since joining the Career Karma team in November 2020, Ryan has used his expertise to cover topics like React and Ruby on Rails.\",\"sameAs\":[\"http:\\\/\\\/www.ryanmanchester.info\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/ryan-manchester-6537a630\\\/\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/ryan-manchester\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Redux: Courses, Training, and Other Resources | Career Karma","description":"A brief introduction to the JavaScritp library Redux and how to best learn it.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/careerkarma.com\/blog\/redux-guides\/","og_locale":"en_US","og_type":"article","og_title":"Redux: Courses, Training, and Other Resources","og_description":"A brief introduction to the JavaScritp library Redux and how to best learn it.","og_url":"https:\/\/careerkarma.com\/blog\/redux-guides\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-05T03:42:29+00:00","article_modified_time":"2022-07-20T15:43:57+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","type":"image\/jpeg"}],"author":"Ryan Manchester","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Ryan Manchester","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/"},"author":{"name":"Ryan Manchester","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"headline":"Redux: Courses, Training, and Other Resources","datePublished":"2020-12-05T03:42:29+00:00","dateModified":"2022-07-20T15:43:57+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/"},"wordCount":1452,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/redux-guides\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/","url":"https:\/\/careerkarma.com\/blog\/redux-guides\/","name":"Redux: Courses, Training, and Other Resources | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","datePublished":"2020-12-05T03:42:29+00:00","dateModified":"2022-07-20T15:43:57+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5"},"description":"A brief introduction to the JavaScritp library Redux and how to best learn it.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/redux-guides\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/06\/code-coding-connection-943096.jpg","width":1200,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/redux-guides\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/careerkarma.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"Redux: Courses, Training, and Other Resources"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/92fd52a503f77fc058ec2d0666da9bd5","name":"Ryan Manchester","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/12\/ryan-manchester-150x150.jpg","caption":"Ryan Manchester"},"description":"Ryan is a technical writer at Career Karma, where he covers programming languages, technology, and web development. The Texas native earned his Bachelor's of Music Composition from the University of North Texas. Ryan is currently pursuing further education in web development, aiming to graduate from Flatiron School with a certification in full stack web development. Since joining the Career Karma team in November 2020, Ryan has used his expertise to cover topics like React and Ruby on Rails.","sameAs":["http:\/\/www.ryanmanchester.info\/","https:\/\/www.linkedin.com\/in\/ryan-manchester-6537a630\/"],"url":"https:\/\/careerkarma.com\/blog\/author\/ryan-manchester\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/26091","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/104"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=26091"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/26091\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/2789"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=26091"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=26091"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=26091"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}