{"id":2411,"date":"2018-08-22T08:58:18","date_gmt":"2018-08-22T08:58:18","guid":{"rendered":"https:\/\/itpathsolutions.com\/?p=2411"},"modified":"2024-02-21T07:27:20","modified_gmt":"2024-02-21T07:27:20","slug":"getting-started-with-redux","status":"publish","type":"post","link":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/","title":{"rendered":"Getting Started With Redux"},"content":{"rendered":"<h4 style=\"text-align: justify;\">Introduction:<\/h4>\n<p style=\"text-align: justify;\">Currently, there are many scripting languages which provide a component-based approach to develop a web application, like <strong>Angular, React<\/strong> etc. To develop such an application developer needs to create components based on the design of the application, and component can communicate with each other via properties and events. Parent component can pass data through properties and a child component can pass data to the parent via events.<\/p>\n<p style=\"text-align: justify;\">With this conventional approach, there are few disadvantages like,<\/p>\n<ul style=\"text-align: justify;\">\n<li>We need to make extra code to manage to communicate between components which are not in a parent-child relationship<\/li>\n<li>There can be duplicate data on the client side which is used by one or more component and if data updated by one component and other component(s) may not aware of that change.<\/li>\n<\/ul>\n<h4 style=\"text-align: justify;\">Redux Building Blocks:<\/h4>\n<p style=\"text-align: justify;\">Redux provides the solution for the above issues. Redux is a <strong><a href=\"https:\/\/itpathsolutions.com\/services\/asp-net-development\/#javascript-jquery\">javascript framework<\/a><\/strong> which allows a developer to manage application state. Redux has 3 building blocks,<\/p>\n<ul style=\"text-align: justify;\">\n<li>Store<\/li>\n<li>Actions<\/li>\n<li>Reducer<\/li>\n<\/ul>\n<h4 style=\"text-align: justify;\">Store<\/h4>\n<p style=\"text-align: justify;\">A store is a JSON object where all data is stored and it is just a JavaScript object which contains all property for data and all components use this data object only. So there will be no duplicate data and if one component updates a part of a data all other components, which are interested to get notified, get notified and can perform certain actions. Below is the example how to store object,<\/p>\n<p style=\"text-align: justify;\"><strong>{<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 items:[],<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 users:[],<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 token:&#8217;Basic a546jksghduil$@aedfioj==&#8217;<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0\u00a0 }\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 <\/strong><\/p>\n<h4 style=\"text-align: justify;\">Actions<\/h4>\n<p style=\"text-align: justify;\">Actions are the events like a click of a button, generally triggered by user interaction. Below are some examples of actions, which we can use in reducers using \u201cswitch case\u201d statement.<\/p>\n<p style=\"text-align: justify;\"><strong>ADD_ITEM = &#8216;ADD_ITEM&#8217;;<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>GET_ITEM = &#8216;GET_ITEM&#8217;;<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>DELETE_ITEM = &#8216;DELETE_ITEM&#8217;;<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>DELETE_ALL_ITEMS = &#8216;DELETE_ALL_ITEMS&#8217;;<\/strong><\/p>\n<h4 style=\"text-align: justify;\">Reducer<\/h4>\n<p style=\"text-align: justify;\">Reducer is a pure function which returns a state based on actions performed by user. Pure functions is a function which always returns same output for same input. For example,<\/p>\n<p style=\"text-align: justify;\"><strong>function reducer(state, action) {<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 switch (action.type) {<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 case: &#8216;INCREMENT&#8217;:<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>return { count: state.count + 1 };<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0\u00a0\u00a0\u00a0 }<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>}<\/strong><\/p>\n<p style=\"text-align: justify;\"><strong>\u00a0<\/strong>Above function is a pure function because it always returns the same result if we pass the same input.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: Currently, there are many scripting languages which provide a component-based approach to develop a web application, like Angular, React etc. To develop such an application developer needs to create components based on the design of the application, and component can communicate with each other via properties and events. Parent component can pass data through [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2852,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[60],"tags":[128,129,130,63],"post_industries":[],"post_technologies":[],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Getting Started With Redux - Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Getting Started With Redux - Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions\" \/>\n<meta property=\"og:description\" content=\"Introduction: Currently, there are many scripting languages which provide a component-based approach to develop a web application, like Angular, React etc. To develop such an application developer needs to create components based on the design of the application, and component can communicate with each other via properties and events. Parent component can pass data through [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/\" \/>\n<meta property=\"og:site_name\" content=\"Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/itpathsolutions\" \/>\n<meta property=\"article:published_time\" content=\"2018-08-22T08:58:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-21T07:27:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"itpathsolutions_admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@itpathsolutions\" \/>\n<meta name=\"twitter:site\" content=\"@itpathsolutions\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"itpathsolutions_admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/\"},\"author\":{\"name\":\"itpathsolutions_admin\",\"@id\":\"https:\/\/www.itpathsolutions.com\/#\/schema\/person\/b734d41ce1d0fa39ba87a7e0f6ac9563\"},\"headline\":\"Getting Started With Redux\",\"datePublished\":\"2018-08-22T08:58:18+00:00\",\"dateModified\":\"2024-02-21T07:27:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/\"},\"wordCount\":359,\"publisher\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg\",\"keywords\":[\"JavaScript\",\"Redux\",\"web design\",\"web development\"],\"articleSection\":[\"Web Development\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/\",\"url\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/\",\"name\":\"Getting Started With Redux - Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions\",\"isPartOf\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg\",\"datePublished\":\"2018-08-22T08:58:18+00:00\",\"dateModified\":\"2024-02-21T07:27:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage\",\"url\":\"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg\",\"contentUrl\":\"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg\",\"width\":1024,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.itpathsolutions.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Getting Started With Redux\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.itpathsolutions.com\/#website\",\"url\":\"https:\/\/www.itpathsolutions.com\/\",\"name\":\"Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions\",\"description\":\"Digitalizing Businesses Globally\",\"publisher\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.itpathsolutions.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.itpathsolutions.com\/#organization\",\"name\":\"It Path Solutions\",\"url\":\"https:\/\/www.itpathsolutions.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.itpathsolutions.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/itpathsolutions.com\/wp-content\/uploads\/2020\/05\/logo.png\",\"contentUrl\":\"https:\/\/itpathsolutions.com\/wp-content\/uploads\/2020\/05\/logo.png\",\"width\":167,\"height\":53,\"caption\":\"It Path Solutions\"},\"image\":{\"@id\":\"https:\/\/www.itpathsolutions.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/itpathsolutions\",\"https:\/\/x.com\/itpathsolutions\",\"https:\/\/www.instagram.com\/itpathsolutions\/\",\"https:\/\/www.linkedin.com\/company\/itpathsolutions\",\"https:\/\/www.pinterest.com\/itpathsolutions\/\",\"https:\/\/www.youtube.com\/c\/ITPathSolutions\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.itpathsolutions.com\/#\/schema\/person\/b734d41ce1d0fa39ba87a7e0f6ac9563\",\"name\":\"itpathsolutions_admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.itpathsolutions.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/484a34819e5022e1999acd376af066b2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/484a34819e5022e1999acd376af066b2?s=96&d=mm&r=g\",\"caption\":\"itpathsolutions_admin\"},\"url\":\"https:\/\/www.itpathsolutions.com\/author\/itpathsolutions_admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Getting Started With Redux - Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions","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:\/\/www.itpathsolutions.com\/getting-started-with-redux\/","og_locale":"en_US","og_type":"article","og_title":"Getting Started With Redux - Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions","og_description":"Introduction: Currently, there are many scripting languages which provide a component-based approach to develop a web application, like Angular, React etc. To develop such an application developer needs to create components based on the design of the application, and component can communicate with each other via properties and events. Parent component can pass data through [&hellip;]","og_url":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/","og_site_name":"Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions","article_publisher":"https:\/\/www.facebook.com\/itpathsolutions","article_published_time":"2018-08-22T08:58:18+00:00","article_modified_time":"2024-02-21T07:27:20+00:00","og_image":[{"width":1024,"height":512,"url":"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg","type":"image\/jpeg"}],"author":"itpathsolutions_admin","twitter_card":"summary_large_image","twitter_creator":"@itpathsolutions","twitter_site":"@itpathsolutions","twitter_misc":{"Written by":"itpathsolutions_admin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#article","isPartOf":{"@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/"},"author":{"name":"itpathsolutions_admin","@id":"https:\/\/www.itpathsolutions.com\/#\/schema\/person\/b734d41ce1d0fa39ba87a7e0f6ac9563"},"headline":"Getting Started With Redux","datePublished":"2018-08-22T08:58:18+00:00","dateModified":"2024-02-21T07:27:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/"},"wordCount":359,"publisher":{"@id":"https:\/\/www.itpathsolutions.com\/#organization"},"image":{"@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg","keywords":["JavaScript","Redux","web design","web development"],"articleSection":["Web Development"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/","url":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/","name":"Getting Started With Redux - Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions","isPartOf":{"@id":"https:\/\/www.itpathsolutions.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage"},"image":{"@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg","datePublished":"2018-08-22T08:58:18+00:00","dateModified":"2024-02-21T07:27:20+00:00","breadcrumb":{"@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#primaryimage","url":"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg","contentUrl":"https:\/\/www.itpathsolutions.com\/wp-content\/uploads\/2020\/01\/Redux-01-01.jpg","width":1024,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/www.itpathsolutions.com\/getting-started-with-redux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.itpathsolutions.com\/"},{"@type":"ListItem","position":2,"name":"Getting Started With Redux"}]},{"@type":"WebSite","@id":"https:\/\/www.itpathsolutions.com\/#website","url":"https:\/\/www.itpathsolutions.com\/","name":"Top Mobile &amp; Web Application Development Company in USA, UK, Australia &amp; India | IT Path Solutions","description":"Digitalizing Businesses Globally","publisher":{"@id":"https:\/\/www.itpathsolutions.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.itpathsolutions.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.itpathsolutions.com\/#organization","name":"It Path Solutions","url":"https:\/\/www.itpathsolutions.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.itpathsolutions.com\/#\/schema\/logo\/image\/","url":"https:\/\/itpathsolutions.com\/wp-content\/uploads\/2020\/05\/logo.png","contentUrl":"https:\/\/itpathsolutions.com\/wp-content\/uploads\/2020\/05\/logo.png","width":167,"height":53,"caption":"It Path Solutions"},"image":{"@id":"https:\/\/www.itpathsolutions.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/itpathsolutions","https:\/\/x.com\/itpathsolutions","https:\/\/www.instagram.com\/itpathsolutions\/","https:\/\/www.linkedin.com\/company\/itpathsolutions","https:\/\/www.pinterest.com\/itpathsolutions\/","https:\/\/www.youtube.com\/c\/ITPathSolutions"]},{"@type":"Person","@id":"https:\/\/www.itpathsolutions.com\/#\/schema\/person\/b734d41ce1d0fa39ba87a7e0f6ac9563","name":"itpathsolutions_admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.itpathsolutions.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/484a34819e5022e1999acd376af066b2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/484a34819e5022e1999acd376af066b2?s=96&d=mm&r=g","caption":"itpathsolutions_admin"},"url":"https:\/\/www.itpathsolutions.com\/author\/itpathsolutions_admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/posts\/2411"}],"collection":[{"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/comments?post=2411"}],"version-history":[{"count":0,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/posts\/2411\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/media\/2852"}],"wp:attachment":[{"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/media?parent=2411"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/categories?post=2411"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/tags?post=2411"},{"taxonomy":"post_industries","embeddable":true,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/post_industries?post=2411"},{"taxonomy":"post_technologies","embeddable":true,"href":"https:\/\/www.itpathsolutions.com\/wp-json\/wp\/v2\/post_technologies?post=2411"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}