{"id":465440,"date":"2024-09-26T14:09:36","date_gmt":"2024-09-26T14:09:36","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=465440"},"modified":"2025-02-20T11:24:06","modified_gmt":"2025-02-20T11:24:06","slug":"create-react-app","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/create-react-app\/","title":{"rendered":"How to create React App"},"content":{"rendered":"\n<p>React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. <\/p>\n\n\n\n<p>Developed by Facebook (Meta) and released in 2013, it&#8217;s a popular choice for <a href=\"https:\/\/webkul.com\/blog\/what-is-headless-ecommerce\/\" target=\"_blank\" rel=\"noreferrer noopener\">Headless eCommerce<\/a>.<\/p>\n\n\n\n<p>Also, look no further and grab the opportunity to start your&nbsp;<a href=\"https:\/\/webkul.com\/magento-2-react-development-services\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 React development<\/a>&nbsp;with the certified&nbsp;<a href=\"https:\/\/webkul.com\/magento-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">Magento 2 development company<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Detailed Steps to Create a React App<\/strong><\/h2>\n\n\n\n<p>Creating a React app involves several steps, including installing Node.js and npm, choosing a package manager, creating a new React app, and starting the development server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Setup Node.js <\/h2>\n\n\n\n<p>Visit the official Node.js website and download the latest version. After downloading, install <a href=\"https:\/\/webkul.com\/blog\/install-node-js-on-ubuntu\/\" target=\"_blank\" rel=\"noreferrer noopener\">Node.js<\/a> on your machine, verify the installation, open a terminal, and enter below mentioned command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">node -v<\/pre>\n\n\n\n<p><br>This command will display the version of Node.js that has been installed on your system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Choose a Package Manager<\/h2>\n\n\n\n<p>In this step, we have to choose a package manager, A package manager is a tool that helps you install, update, and manage packages (libraries and dependencies) for your React application.<\/p>\n\n\n\n<p>Here, we will use npm (Node Package Manager), which is the default package manager for Node.js.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">npm install -g npm<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Create a New React App<\/h2>\n\n\n\n<p>To create a new React app, run the following command in your terminal or command prompt.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">npx create-react-app my_app<\/pre>\n\n\n\n<p><br>Our React app name is <strong>my_app<\/strong> and you can provide your accordingly, once the app is created, change it into the app directory by running the below command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">cd my_app<\/pre>\n\n\n\n<p><br>Over set up the  React application, and you can see the final structure.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">.\n\u251c\u2500\u2500 src\/\n\u2502   \u251c\u2500\u2500 App.js\n\u2502   \u251c\u2500\u2500 App.css\n\u2502   \u251c\u2500\u2500 App.test.js\n|   \u251c\u2500\u2500 index.js\n|   \u251c\u2500\u2500 index.css\n\u2502   \u2514\u2500\u2500 logo.svg\n\u251c\u2500\u2500 public\/\n\u2502   \u251c\u2500\u2500 index.html\n\u2502   \u251c\u2500\u2500 logo.svg\n\u2502   \u251c\u2500\u2500 robots.txt\n\u2502   \u2514\u2500\u2500 manifest.json\n\u251c\u2500\u2500 package-lock.json\n\u251c\u2500\u2500 package.json\n\u2514\u2500\u2500 README.md<\/pre>\n\n\n\n<p><br>Take a look around the app directory. You&#8217;ll notice that there are several files and directories.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>README.md:<\/strong> A Markdown file containing information about the app. This file is essentially the app&#8217;s instruction manual, providing details about the app&#8217;s features, usage, and configuration.<\/li>\n\n\n\n<li><strong>package.json:<\/strong>  A JSON file containing metadata about the app. This file contains information such as the app&#8217;s name, version, dependencies, and scripts.<\/li>\n\n\n\n<li><strong>public\/:<\/strong> This directory contains static assets (such as images and stylesheets) that are used by the app.<\/li>\n\n\n\n<li><strong>index.html:<\/strong> An HTML file containing the app&#8217;s HTML structure. This file serves as the app&#8217;s entry point and is responsible for rendering the app&#8217;s UI.<\/li>\n\n\n\n<li><strong>src\/:<\/strong> A directory containing the app&#8217;s JavaScript code. This directory is where all the app&#8217;s logic and functionality reside.<\/li>\n\n\n\n<li><strong>App.js:<\/strong> A JavaScript file containing the app&#8217;s main component. This file defines the app&#8217;s UI and handles user interactions.<\/li>\n\n\n\n<li><strong>index.js:<\/strong> A JavaScript file containing the app&#8217;s entry point. This file is responsible for rendering the app&#8217;s main component and kicks off the app&#8217;s execution.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Start the Development Server<\/h2>\n\n\n\n<p>Now we can start our React application development server, to run the following below-mentioned command.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\">npm start<\/pre>\n\n\n\n<p><br>By default, the React application starts at <strong>http:\/\/localhost:3000<\/strong> with a 3000 port if the 3000 port is already in use it&#8217;s asking for running into the 3001 port.<\/p>\n\n\n\n<figure class=\"wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1200\" height=\"596\" data-id=\"465652\" src=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp\" alt=\"react\" class=\"wp-image-465652\" srcset=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp 1200w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-300x149.webp 300w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-250x124.webp 250w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-768x382.webp 768w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1536x763.webp 1536w, https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react.webp 1855w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" loading=\"lazy\" \/><\/figure>\n<\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>In just a few steps, you&#8217;ve laid the foundation for building your own React applications by utilizing <a href=\"https:\/\/nodejs.org\/en\/download\/package-manager\" target=\"_blank\" rel=\"noreferrer noopener nofollow\">Node.js<\/a>. <\/p>\n\n\n\n<p>we are now ready to build our own applications, combining the power of Node.js and React.js to create efficient and scalable single-page applications. <\/p>\n\n\n\n<p>With\u00a0<a href=\"https:\/\/webkul.com\/react-native-app-development-services\/\">react native app development<\/a>, we can also create cross-platform mobile applications that deliver a native-like experience, all while sharing a single codebase for both iOS and Android platforms.<\/p>\n\n\n\n<p>Start your&nbsp;<a href=\"https:\/\/webkul.com\/headless-commerce-development-services\/\">Headless Development<\/a>&nbsp;with Webkul.<br>Happy Coding&nbsp;!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. Developed by Facebook (Meta) and released in 2013, it&#8217;s a popular choice for Headless eCommerce. Also, look no further and grab the opportunity to start your&nbsp;Magento 2 React development&nbsp;with the certified&nbsp;Magento 2 development company. Detailed Steps to Create <a href=\"https:\/\/webkul.com\/blog\/create-react-app\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":556,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[6357],"tags":[],"class_list":["post-465440","post","type-post","status-publish","format-standard","hentry","category-react-js"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to create React App - Webkul Blog<\/title>\n<meta name=\"description\" content=\"React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. Developed by Facebook (Meta) and released in 2013, it&#039;s a popular choice for Headless eCommerce.\" \/>\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\/create-react-app\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create React App - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. Developed by Facebook (Meta) and released in 2013, it&#039;s a popular choice for Headless eCommerce.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/create-react-app\/\" \/>\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=\"2024-09-26T14:09:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-20T11:24:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp\" \/>\n<meta name=\"author\" content=\"Abhijeet Kumar\" \/>\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=\"Abhijeet Kumar\" \/>\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\/create-react-app\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/\"},\"author\":{\"name\":\"Abhijeet Kumar\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/b5a304024503b6ebcc17ca4eb99c4761\"},\"headline\":\"How to create React App\",\"datePublished\":\"2024-09-26T14:09:36+00:00\",\"dateModified\":\"2025-02-20T11:24:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/\"},\"wordCount\":562,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp\",\"articleSection\":[\"react js\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/create-react-app\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/\",\"url\":\"https:\/\/webkul.com\/blog\/create-react-app\/\",\"name\":\"How to create React App - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp\",\"datePublished\":\"2024-09-26T14:09:36+00:00\",\"dateModified\":\"2025-02-20T11:24:06+00:00\",\"description\":\"React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. Developed by Facebook (Meta) and released in 2013, it's a popular choice for Headless eCommerce.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/create-react-app\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react.webp\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react.webp\",\"width\":1855,\"height\":922},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/create-react-app\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create React App\"}]},{\"@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\/b5a304024503b6ebcc17ca4eb99c4761\",\"name\":\"Abhijeet Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7da15c87a9e02a6df1a4c86e9c28fdc2b835c30595c7476236c342bd212d70f8?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7da15c87a9e02a6df1a4c86e9c28fdc2b835c30595c7476236c342bd212d70f8?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Abhijeet Kumar\"},\"description\":\"Abhijeet is a skilled Software Engineer specializing in the Magento platform. With expertise in Magento 2 Headless Compatible Extensions and Headless PWA services, he crafts innovative solutions that enhance eCommerce functionality. A skilled developer, offering unique, headless solutions.\",\"url\":\"https:\/\/webkul.com\/blog\/author\/abhijit-kumar018\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create React App - Webkul Blog","description":"React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. Developed by Facebook (Meta) and released in 2013, it's a popular choice for Headless eCommerce.","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\/create-react-app\/","og_locale":"en_US","og_type":"article","og_title":"How to create React App - Webkul Blog","og_description":"React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. Developed by Facebook (Meta) and released in 2013, it's a popular choice for Headless eCommerce.","og_url":"https:\/\/webkul.com\/blog\/create-react-app\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2024-09-26T14:09:36+00:00","article_modified_time":"2025-02-20T11:24:06+00:00","og_image":[{"url":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp","type":"","width":"","height":""}],"author":"Abhijeet Kumar","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Abhijeet Kumar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/create-react-app\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/create-react-app\/"},"author":{"name":"Abhijeet Kumar","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/b5a304024503b6ebcc17ca4eb99c4761"},"headline":"How to create React App","datePublished":"2024-09-26T14:09:36+00:00","dateModified":"2025-02-20T11:24:06+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-react-app\/"},"wordCount":562,"commentCount":1,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp","articleSection":["react js"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/create-react-app\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/create-react-app\/","url":"https:\/\/webkul.com\/blog\/create-react-app\/","name":"How to create React App - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage"},"image":{"@id":"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage"},"thumbnailUrl":"https:\/\/webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react-1200x596.webp","datePublished":"2024-09-26T14:09:36+00:00","dateModified":"2025-02-20T11:24:06+00:00","description":"React.js, also known as React, is an open-source JavaScript library for building user interfaces and single-page applications. Developed by Facebook (Meta) and released in 2013, it's a popular choice for Headless eCommerce.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/create-react-app\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/create-react-app\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/create-react-app\/#primaryimage","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react.webp","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2024\/09\/react.webp","width":1855,"height":922},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/create-react-app\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to create React App"}]},{"@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\/b5a304024503b6ebcc17ca4eb99c4761","name":"Abhijeet Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7da15c87a9e02a6df1a4c86e9c28fdc2b835c30595c7476236c342bd212d70f8?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7da15c87a9e02a6df1a4c86e9c28fdc2b835c30595c7476236c342bd212d70f8?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Abhijeet Kumar"},"description":"Abhijeet is a skilled Software Engineer specializing in the Magento platform. With expertise in Magento 2 Headless Compatible Extensions and Headless PWA services, he crafts innovative solutions that enhance eCommerce functionality. A skilled developer, offering unique, headless solutions.","url":"https:\/\/webkul.com\/blog\/author\/abhijit-kumar018\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/465440","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\/556"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=465440"}],"version-history":[{"count":59,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/465440\/revisions"}],"predecessor-version":[{"id":483685,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/465440\/revisions\/483685"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=465440"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=465440"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=465440"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}