{"id":107978,"date":"2018-01-05T15:51:57","date_gmt":"2018-01-05T15:51:57","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=107978"},"modified":"2026-01-02T12:11:08","modified_gmt":"2026-01-02T12:11:08","slug":"use-js-mixins-magento2","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/","title":{"rendered":"Use of Js Mixins in Magento 2"},"content":{"rendered":"\n<p>In this blog, we\u2019ll explore what JS Mixins are, how they work in Magento 2, and step-by-step examples to implement them.<\/p>\n\n\n\n<p>Magento 2 is a robust e-commerce platform that allows developers to customize the frontend and backend efficiently. One powerful feature in Magento 2\u2019s frontend architecture is <strong>JavaScript Mixins<\/strong>. <\/p>\n\n\n\n<p>They let you modify or extend core JavaScript functionality without overriding original files, making your code cleaner, modular, and upgrade-safe by use of JS Mixins in Magento 2.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Are JS Mixins in Magento 2?<\/h2>\n\n\n\n<p>JavaScript Mixins are a way to <strong>extend or override the behavior of existing JavaScript modules<\/strong> in Magento 2. <\/p>\n\n\n\n<p>Instead of rewriting core JS files, you can inject additional functionality or modify existing methods using Mixins.<\/p>\n\n\n\n<p><strong>Benefits of using JS Mixins:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Upgrade-safe:<\/strong> You don\u2019t touch core files, so Magento upgrades won\u2019t break your customizations.<\/li>\n\n\n\n<li><strong>Modular:<\/strong> Changes are isolated in separate modules for better maintainability.<\/li>\n\n\n\n<li><strong>Reusable:<\/strong> Mixins can be reused across multiple components or modules.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How JS Mixins Work<\/h2>\n\n\n\n<p>Magento 2 uses <strong>RequireJS<\/strong> for its JavaScript module loading system. JS Mixins rely on RequireJS configuration to link your custom JS code with an existing Magento JS module.<\/p>\n\n\n\n<p><strong>Key points:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Mixins override or extend methods of an original JavaScript module.<\/li>\n\n\n\n<li>Magento loads the Mixin after the original module, merging your custom functionality.<\/li>\n\n\n\n<li>You can modify return values, call original methods, or add entirely new functionality.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Steps to Implement a JS Mixin in Magento 2<\/h2>\n\n\n\n<p><strong>Step 1:<\/strong> You will need to create <strong>requirejs-config.js<\/strong> under <strong>app\/code\/Company\/Module\/view\/frontend<\/strong>, like below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">var config = {\n    config: {\n        mixins: {\n            &#039;Magento_Checkout\/js\/action\/set-shipping-information&#039;: {\n                &#039;Company_Module\/js\/action\/set-shipping-information-mixin&#039;: true\n            }\n        } \/\/ this is how js mixin is defined\n    }\n};\n\/\/ I am extending &quot;Magento_Checkout\/js\/action\/set-shipping-information&quot; this js with our custom js &quot;Company_Module\/js\/action\/set-shipping-information-mixin&quot;.<\/pre>\n\n\n\n<p><strong>Step 2: <\/strong>Create a <strong>set-shipping-information-mixin.js<\/strong> file under\u00a0<strong>app\/code\/Company\/Module\/view\/frontend\/web\/js\/action<\/strong> to extend the original function. <\/p>\n\n\n\n<p>So I am just appending some data to the shipping address, only for example, here is the code :<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">\/*jshint browser:true jquery:true*\/\n \/*global alert*\/\n define(&#091;\n     &#039;jquery&#039;,\n     &#039;mage\/utils\/wrapper&#039;,\n     &#039;Magento_Checkout\/js\/model\/quote&#039;\n ], function ($, wrapper, quote) {\n     &#039;use strict&#039;;\n\n     return function (setShippingInformationAction) {\n\n         return wrapper.wrap(setShippingInformationAction, function (originalAction) {\n            var shippingAddress = quote.shippingAddress();\n            console.log(shippingAddress&#091;&#039;middlename&#039;]);\n            if (shippingAddress&#091;&#039;middlename&#039;] === null) {\n                shippingAddress&#091;&#039;middlename&#039;] = &quot;middlename&quot;;\n            }\n            console.log(shippingAddress);\n            \/\/ you can write here your code according to your requirement\n            return originalAction(); \/\/ it is returning the flow to original action\n        });\n     };\n });<\/pre>\n\n\n\n<p><strong>Step 3: <\/strong>If you console <strong>quote.shippingAddress()<\/strong> in js then the result will be as follows :<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"360\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg\" alt=\"Selection_016\" class=\"wp-image-363823\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-300x90.jpg 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-250x75.jpg 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-768x230.jpg 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016.jpg 1274w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n\n\n\n<p>I hope this blog will help you with custom functionality in your <a href=\"https:\/\/webkul.com\/magento-development\/\" target=\"_blank\" rel=\"noopener\">Magento 2 Development<\/a>. <\/p>\n\n\n\n<p>You can also explore <a href=\"https:\/\/webkul.com\/blog\/what-is-headless-ecommerce\/\" target=\"_blank\" rel=\"noopener\">headless eCommerce development<\/a> to develop high-quality interactive websites with the help of JavaScript frameworks.<\/p>\n\n\n\n<p>For technical assistance, please get in touch with us via email at&nbsp;<a href=\"mailto:support@webkul.com\" target=\"_blank\" rel=\"noreferrer noopener\">support@webkul.com<\/a>.<\/p>\n\n\n\n<p>Discover powerful solutions to enhance your Magento 2 store by exploring our&nbsp;<a href=\"https:\/\/store.webkul.com\/Magento-2.html\">Magento 2 plugins<\/a>&nbsp;page.<\/p>\n\n\n\n<p>Bring your vision to life with custom-built solutions\u2014hire skilled&nbsp;<a href=\"https:\/\/webkul.com\/hire-magento-developers\/\">Magento 2 developers<\/a>&nbsp;today.<br>Happy Coding!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, we\u2019ll explore what JS Mixins are, how they work in Magento 2, and step-by-step examples to implement them. Magento 2 is a robust e-commerce platform that allows developers to customize the frontend and backend efficiently. One powerful feature in Magento 2\u2019s frontend architecture is JavaScript Mixins. They let you modify or extend <a href=\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":103,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[302],"tags":[2070],"class_list":["post-107978","post","type-post","status-publish","format-standard","hentry","category-magento2","tag-magento2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Use of JS Mixins in magento 2 to Extend Functionality - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Step-by-step guide to the Use of JS Mixins in Magento 2. Learn how developers can extend and modify core frontend behavior using JS mixins.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Use of JS Mixins in magento 2 to Extend Functionality - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Step-by-step guide to the Use of JS Mixins in Magento 2. Learn how developers can extend and modify core frontend behavior using JS mixins.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-05T15:51:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-02T12:11:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg\" \/>\n<meta name=\"author\" content=\"Pranjali Goel\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Pranjali Goel\" \/>\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:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\"},\"author\":{\"name\":\"Pranjali Goel\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692\"},\"headline\":\"Use of Js Mixins in Magento 2\",\"datePublished\":\"2018-01-05T15:51:57+00:00\",\"dateModified\":\"2026-01-02T12:11:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\"},\"wordCount\":389,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg\",\"keywords\":[\"Magento2\"],\"articleSection\":[\"Magento2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\",\"url\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\",\"name\":\"Use of JS Mixins in magento 2 to Extend Functionality - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg\",\"datePublished\":\"2018-01-05T15:51:57+00:00\",\"dateModified\":\"2026-01-02T12:11:08+00:00\",\"description\":\"Step-by-step guide to the Use of JS Mixins in Magento 2. Learn how developers can extend and modify core frontend behavior using JS mixins.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016.jpg\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016.jpg\",\"width\":1274,\"height\":382,\"caption\":\"Selection_016\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Use of Js Mixins in Magento 2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692\",\"name\":\"Pranjali Goel\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Pranjali Goel\"},\"description\":\"Believes in simple lifestyle and follow a simple logic to make herself better than yesterday.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/pranjali968\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Use of JS Mixins in magento 2 to Extend Functionality - Webkul Blog","description":"Step-by-step guide to the Use of JS Mixins in Magento 2. Learn how developers can extend and modify core frontend behavior using JS mixins.","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:\/\/webkul.com\/blog\/use-js-mixins-magento2\/","og_locale":"en_US","og_type":"article","og_title":"Use of JS Mixins in magento 2 to Extend Functionality - Webkul Blog","og_description":"Step-by-step guide to the Use of JS Mixins in Magento 2. Learn how developers can extend and modify core frontend behavior using JS mixins.","og_url":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2018-01-05T15:51:57+00:00","article_modified_time":"2026-01-02T12:11:08+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg","type":"","width":"","height":""}],"author":"Pranjali Goel","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Pranjali Goel","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/"},"author":{"name":"Pranjali Goel","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692"},"headline":"Use of Js Mixins in Magento 2","datePublished":"2018-01-05T15:51:57+00:00","dateModified":"2026-01-02T12:11:08+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/"},"wordCount":389,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg","keywords":["Magento2"],"articleSection":["Magento2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/","url":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/","name":"Use of JS Mixins in magento 2 to Extend Functionality - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016-1200x360.jpg","datePublished":"2018-01-05T15:51:57+00:00","dateModified":"2026-01-02T12:11:08+00:00","description":"Step-by-step guide to the Use of JS Mixins in Magento 2. Learn how developers can extend and modify core frontend behavior using JS mixins.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016.jpg","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/01\/Selection_016.jpg","width":1274,"height":382,"caption":"Selection_016"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/use-js-mixins-magento2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Use of Js Mixins in Magento 2"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/c1964884ceb33a5ffdf322ee5424f692","name":"Pranjali Goel","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e670273251719f83735534af186231dd99fbe378466fef356d4e55de5b46244f?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Pranjali Goel"},"description":"Believes in simple lifestyle and follow a simple logic to make herself better than yesterday.","url":"https:\/\/webkul.com\/blog\/author\/pranjali968\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/107978","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/103"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=107978"}],"version-history":[{"count":25,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/107978\/revisions"}],"predecessor-version":[{"id":520420,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/107978\/revisions\/520420"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=107978"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=107978"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=107978"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}