{"id":373667,"date":"2023-03-23T09:02:07","date_gmt":"2023-03-23T09:02:07","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=373667"},"modified":"2023-03-23T09:21:43","modified_gmt":"2023-03-23T09:21:43","slug":"what-is-konva-js-how-to-use-it-for-the-reach-graphic","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/","title":{"rendered":"What is konva.js? &amp; how to use it?"},"content":{"rendered":"\n<p>Hello Friends!!<\/p>\n\n\n\n<p>In today\u2019s blog, I&#8217;m writing about Konva.js for beginners.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is konva.js?<\/strong><\/h2>\n\n\n\n<p><a href=\"http:\/\/what-is-konva-js-amp-how-to-use-it\">Konva.js<\/a> is an open-source 2D drawing and animation library for JavaScript that enables high-performance animations, transitions, node nesting, layering, filtering,<br>caching, event handling for desktop and mobile applications, and much more.<\/p>\n\n\n\n<p>With Konva.js, you can create and manipulate graphical objects such as lines, shapes, images, text, and animations with ease. The library provides a wide range of features, including support for multi-touch gestures, drag-and-drop, hit detection, and event handling. It also includes a rich set of built-in filters, easing functions, and animation controls.<\/p>\n\n\n\n<p>Konva.js is designed to be compatible with modern web technologies and can be used in combination with other libraries such as React, Angular, Vue, and jQuery.<\/p>\n\n\n\n<p>Overall, Konva.js is a powerful and flexible tool for creating interactive and visually-rich web applications that run smoothly across all devices and platforms.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How to use konva.js?<\/strong><\/h2>\n\n\n\n<p>Here are the basic steps to use Konva.js in your web application &#8211; <\/p>\n\n\n\n<p>Firstly, <\/p>\n\n\n\n<p>1.)  Add the Konva.js library to your project by including it in your HTML file using a script tag &#8211;<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;script src=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/konva\/8.4.2\/konva.min.js&quot;&gt;&lt;\/script&gt;<\/pre>\n\n\n\n<p>If you are using package managers &#8211; Install it by the below command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">npm install konva<\/pre>\n\n\n\n<p>Or,  you can download the library and include it in your project from a local file.<\/p>\n\n\n\n<p>2.) Create a container element in your HTML file where you want to add the canvas &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;div id=&quot;container&quot;&gt;&lt;\/div&gt;<\/pre>\n\n\n\n<p>Then, create a new Konva.Stage object that will contain your canvas &#8211;<\/p>\n\n\n\n<p>Example &#8211;<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">var stage = new Konva.Stage({\n  container: &#039;container&#039;,\n  width: 200,\n  height: 200\n});<\/pre>\n\n\n\n<p>In this above example, the container parameter specifies the ID of the HTML element where the canvas will be added. You can also specify the width and height of the canvas.<\/p>\n\n\n\n<p>4.) Create a new Konva.Layer object to add your shapes and other graphical elements which you want to add &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">var layer = new Konva.Layer();<\/pre>\n\n\n\n<p>5.) Now, create your graphical elements using Konva classes such as Konva.Rect, Konva.Circle, Konva.Line, etc. &#8211; <\/p>\n\n\n\n<p>Example &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">var rect = new Konva.Rect({\n  x: 50,\n  y: 50,\n  width: 100,\n  height: 100,\n  fill: &#039;white&#039;,\n  stroke: &#039;black&#039;,\n  strokeWidth: 2\n});<\/pre>\n\n\n\n<p>In the above example, a Konva.Rect object is created with a position of x=50, y=50, and a width and height of 100 pixels. The rectangle is filled with white and has a black stroke with a width of 2 pixels.<\/p>\n\n\n\n<p>6.) Now, add your graphical elements to the layer &#8211;<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">layer.add(rect);<\/pre>\n\n\n\n<p>7.) Add the layer to the stage &#8211; <\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">stage.add(layer);<\/pre>\n\n\n\n<p>8.) At last, Render the canvas by calling the stage.draw() method &#8211;<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">stage.draw();<\/pre>\n\n\n\n<p>This will draw all the graphical elements you added to the layer and display them in the container element on your web page.<\/p>\n\n\n\n<p>That\u2019s all about the <a href=\"https:\/\/konvajs.org\/\">Konva.js<\/a>. Hope this will be helpful.<\/p>\n\n\n\n<p>If you have any questions please comment below, and we will try to respond to you.<\/p>\n\n\n\n<p>Thanks for visiting the <a href=\"https:\/\/webkul.com\/\">Webkul<\/a> blog! \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello Friends!! In today\u2019s blog, I&#8217;m writing about Konva.js for beginners. What is konva.js? Konva.js is an open-source 2D drawing and animation library for JavaScript that enables high-performance animations, transitions, node nesting, layering, filtering,caching, event handling for desktop and mobile applications, and much more. With Konva.js, you can create and manipulate graphical objects such as <a href=\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":430,"featured_media":373742,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9121],"tags":[13831,13829,13832,13830,13828],"class_list":["post-373667","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-magento-2","tag-basic-uses-of-konva-js","tag-how-to-use-it","tag-how-to-use-konva-js-to-create-a-high-reach-graphic","tag-konva-js-for-the-beginners","tag-what-is-konva-js"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is konva.js? &amp; how to use it? - Webkul Blog<\/title>\n<meta name=\"description\" content=\"What is konva.js? &amp; how to use it? Konva.js for beginners, how to use konva.js to create a high-reach graphic\" \/>\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\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is konva.js? &amp; how to use it? - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"What is konva.js? &amp; how to use it? Konva.js for beginners, how to use konva.js to create a high-reach graphic\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\" \/>\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=\"2023-03-23T09:02:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-23T09:21:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png\" \/>\n\t<meta property=\"og:image:width\" content=\"634\" \/>\n\t<meta property=\"og:image:height\" content=\"500\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Shweta Singh\" \/>\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=\"Shweta Singh\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\"},\"author\":{\"name\":\"Shweta Singh\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/2aa9e6c8f634365b94451ac7a636a444\"},\"headline\":\"What is konva.js? &amp; how to use it?\",\"datePublished\":\"2023-03-23T09:02:07+00:00\",\"dateModified\":\"2023-03-23T09:21:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\"},\"wordCount\":457,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png\",\"keywords\":[\"Basic uses of konva.js\",\"how to use it?\",\"How to use konva.js to create a high reach graphic\",\"Konva.js for the beginners.\",\"What is konva.js?\"],\"articleSection\":[\"Magento 2\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\",\"url\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\",\"name\":\"What is konva.js? &amp; how to use it? - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png\",\"datePublished\":\"2023-03-23T09:02:07+00:00\",\"dateModified\":\"2023-03-23T09:21:43+00:00\",\"description\":\"What is konva.js? & how to use it? Konva.js for beginners, how to use konva.js to create a high-reach graphic\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png\",\"width\":634,\"height\":500,\"caption\":\"how to use konva.js\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"What is konva.js? &amp; how to use it?\"}]},{\"@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\/2aa9e6c8f634365b94451ac7a636a444\",\"name\":\"Shweta Singh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/51b8ea403cd7931cc8ef43d9b80e04e02143fd85bae4fe4ff866790408fb82d0?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\/51b8ea403cd7931cc8ef43d9b80e04e02143fd85bae4fe4ff866790408fb82d0?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g\",\"caption\":\"Shweta Singh\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/shweta-singh342\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is konva.js? &amp; how to use it? - Webkul Blog","description":"What is konva.js? & how to use it? Konva.js for beginners, how to use konva.js to create a high-reach graphic","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\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/","og_locale":"en_US","og_type":"article","og_title":"What is konva.js? &amp; how to use it? - Webkul Blog","og_description":"What is konva.js? & how to use it? Konva.js for beginners, how to use konva.js to create a high-reach graphic","og_url":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2023-03-23T09:02:07+00:00","article_modified_time":"2023-03-23T09:21:43+00:00","og_image":[{"width":634,"height":500,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png","type":"image\/png"}],"author":"Shweta Singh","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Shweta Singh","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/"},"author":{"name":"Shweta Singh","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/2aa9e6c8f634365b94451ac7a636a444"},"headline":"What is konva.js? &amp; how to use it?","datePublished":"2023-03-23T09:02:07+00:00","dateModified":"2023-03-23T09:21:43+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/"},"wordCount":457,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png","keywords":["Basic uses of konva.js","how to use it?","How to use konva.js to create a high reach graphic","Konva.js for the beginners.","What is konva.js?"],"articleSection":["Magento 2"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/","url":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/","name":"What is konva.js? &amp; how to use it? - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage"},"thumbnailUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png","datePublished":"2023-03-23T09:02:07+00:00","dateModified":"2023-03-23T09:21:43+00:00","description":"What is konva.js? & how to use it? Konva.js for beginners, how to use konva.js to create a high-reach graphic","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2023\/03\/img.png","width":634,"height":500,"caption":"how to use konva.js"},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/what-is-konva-js-how-to-use-it-for-the-reach-graphic\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"What is konva.js? &amp; how to use it?"}]},{"@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\/2aa9e6c8f634365b94451ac7a636a444","name":"Shweta Singh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/51b8ea403cd7931cc8ef43d9b80e04e02143fd85bae4fe4ff866790408fb82d0?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\/51b8ea403cd7931cc8ef43d9b80e04e02143fd85bae4fe4ff866790408fb82d0?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Feva.png&r=g","caption":"Shweta Singh"},"url":"https:\/\/webkul.com\/blog\/author\/shweta-singh342\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/373667","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\/430"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=373667"}],"version-history":[{"count":11,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/373667\/revisions"}],"predecessor-version":[{"id":373773,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/373667\/revisions\/373773"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media\/373742"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=373667"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=373667"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=373667"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}