{"id":995,"date":"2022-09-08T20:44:29","date_gmt":"2022-09-08T19:44:29","guid":{"rendered":"https:\/\/codeflarelimited.com\/blog\/?p=995"},"modified":"2022-09-08T20:44:32","modified_gmt":"2022-09-08T19:44:32","slug":"how-to-create-your-first-node-js-application","status":"publish","type":"post","link":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/","title":{"rendered":"How to Create Your First Node JS Application"},"content":{"rendered":"\n<p>Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production by large companies such as Walmart, Uber, Netflix, Paypal, etc. <\/p>\n\n\n\n<p>In this tutorial, we are going to see how we can create and run our first Node JS application.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"has-text-align-center wp-block-heading\" id=\"h-free-web-and-mobile-app-template-source-code\">Free Web And Mobile App Template Source Code<\/h2>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large is-resized\"><a href=\"https:\/\/origamisuite.dev\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/photo-ui-1-908x1024.png\" alt=\"\" class=\"wp-image-1001\" width=\"363\" height=\"408\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/photo-ui-1-908x1024.png 908w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/photo-ui-1-266x300.png 266w\" sizes=\"auto, (max-width: 363px) 100vw, 363px\" \/><\/a><figcaption>Download free web and mobile app template source code<\/figcaption><\/figure>\n\n\n\n<p>Let&#8217;s get started!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-download-node-js\">1. Download Node JS<\/h2>\n\n\n\n<p>First you need to <a href=\"https:\/\/nodejs.org\/en\/download\/\" target=\"_blank\" rel=\"noreferrer noopener\">download Node JS<\/a>. To confirm that it is installed run the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">node -v<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-create-a-folder-and-open-it-up-in-the-terminal\">2. Create a folder and open it up in the terminal<\/h2>\n\n\n\n<p>Create a project folder and call it whatever you want to call it. Then open up that folder in your terminal \/ command prompt and run the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">npm init<\/code><\/pre>\n\n\n\n<p>The\u00a0<strong><em><code>npm init<\/code>\u00a0<\/em><\/strong>command is used to create a Node.js project. The npm init command will create a package where the project files will be stored. All the modules you download will be stored in the package.json file<\/p>\n\n\n\n<p>You will be prompted to add the following project information when creating a project:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Project name<\/li><li>Project initial version<\/li><li>Project description<\/li><li>The project&#8217;s entry point<\/li><li>The project&#8217;s test command<\/li><li>The project&#8217;s git repository<\/li><li>The project&#8217;s license<\/li><\/ul>\n\n\n\n<p>The default project entry point is usually <strong><em>index.js<\/em><\/strong>. Although that can differ from server to server as will look for <strong><em>app.js<\/em><\/strong> or <strong><em>main.js<\/em><\/strong> to run your application.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-3-add-express-server\">3. Add express server<\/h2>\n\n\n\n<p>Next, we will add our express server dependency. Express will give you an easier solution to middleware, routing, templating and even debugging. <\/p>\n\n\n\n<p>Run the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">npm i express<\/code><\/pre>\n\n\n\n<p>Your package.json file should look like this<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"616\" height=\"477\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png\" alt=\"create a node js application\" class=\"wp-image-997\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png 616w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3-300x232.png 300w\" sizes=\"auto, (max-width: 616px) 100vw, 616px\" \/><figcaption>package.json<\/figcaption><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-4-create-the-index-js-file\">4. Create the index.js file<\/h2>\n\n\n\n<p>Now, go to your directory and create a file called <strong><em>index.js<\/em><\/strong>, which will be the entry point to our application and add the following code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"javascript\" class=\"language-javascript\">const express = require('express');  \nconst app = express();               \nconst port = 5000;  \/\/port number where your server will be listening\n\napp.get('\/', (req, res) => {  \/\/get requests to the root (\"\/\") \n    res.sendFile('index.html', {root: __dirname});                                                            \n});\n\napp.listen(port, () => { \/\/server starts listening \n    console.log(`listening on port ${port}`);\n});\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-5-create-the-index-html-file\">5. Create the index.html file<\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"markup\" class=\"language-markup\">&lt;!DOCTYPE html>\n&lt;html lang=\"en\">\n    &lt;head>\n        &lt;meta charset=\"UTF-8\">\n        &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n        &lt;title>Node JS Simple App&lt;\/title>\n    &lt;\/head>\n    &lt;body>\n        &lt;div>Hello World!&lt;\/div>\n    &lt;\/body>\n&lt;\/html>\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-6-finally-run-your-application\">6. Finally, Run your application<\/h2>\n\n\n\n<p>Run your app with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">node index<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-congratulations\">Congratulations! <\/h2>\n\n\n\n<p>You have created your first node JS application.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1025\" height=\"635\" src=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-08-at-20.30.55.png\" alt=\"\" class=\"wp-image-998\" srcset=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-08-at-20.30.55.png 1025w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-08-at-20.30.55-300x186.png 300w, https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/Screenshot-2022-09-08-at-20.30.55-768x476.png 768w\" sizes=\"auto, (max-width: 1025px) 100vw, 1025px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-see-also\">See Also<\/h2>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\/blog\/create-a-login-form-with-node-js-mysql\/\" target=\"_blank\" rel=\"noreferrer noopener\">Create a login form with Node JS and MySQL<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/codeflarelimited.com\/blog\/create-a-registration-form-with-node-js-mysql\/\" target=\"_blank\" rel=\"noreferrer noopener\">Create a registration from with Node JS and MySQL<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production<\/p>\n","protected":false},"author":1,"featured_media":997,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[98],"tags":[],"class_list":["post-995","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-softare-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Create Your First Node JS Application<\/title>\n<meta name=\"description\" content=\"Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production by large ...\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Your First Node JS Application\" \/>\n<meta property=\"og:description\" content=\"Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production by large ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/facebook.com\/codeflretech\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-08T19:44:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-08T19:44:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"616\" \/>\n\t<meta property=\"og:image:height\" content=\"477\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"codeflare\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codeflaretech\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/\"},\"author\":{\"name\":\"codeflare\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\"},\"headline\":\"How to Create Your First Node JS Application\",\"datePublished\":\"2022-09-08T19:44:29+00:00\",\"dateModified\":\"2022-09-08T19:44:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/\"},\"wordCount\":352,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/carbon-3.png\",\"articleSection\":[\"softare development\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/\",\"name\":\"How to Create Your First Node JS Application\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/carbon-3.png\",\"datePublished\":\"2022-09-08T19:44:29+00:00\",\"dateModified\":\"2022-09-08T19:44:32+00:00\",\"description\":\"Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production by large ...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#primaryimage\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/carbon-3.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/09\\\/carbon-3.png\",\"width\":616,\"height\":477,\"caption\":\"create a node js application\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/how-to-create-your-first-node-js-application\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"softare development\",\"item\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/softare-development\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Create Your First Node JS Application\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"name\":\"\",\"description\":\"Sustainable solutions\",\"publisher\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#organization\",\"name\":\"Codeflare Limited\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"contentUrl\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/codeflare.png\",\"width\":1040,\"height\":263,\"caption\":\"Codeflare Limited\"},\"image\":{\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/#\\\/schema\\\/person\\\/7e65653d49add95629f8c1053c5cd76a\",\"name\":\"codeflare\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g\",\"caption\":\"codeflare\"},\"description\":\"Latest tech news and coding tips.\",\"sameAs\":[\"https:\\\/\\\/codeflarelimited.com\\\/blog\",\"https:\\\/\\\/facebook.com\\\/codeflretech\",\"https:\\\/\\\/instagram.com\\\/codeflaretech\",\"https:\\\/\\\/x.com\\\/codeflaretech\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1\"],\"url\":\"https:\\\/\\\/codeflarelimited.com\\\/blog\\\/author\\\/watcher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create Your First Node JS Application","description":"Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production by large ...","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:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/","og_locale":"en_US","og_type":"article","og_title":"How to Create Your First Node JS Application","og_description":"Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production by large ...","og_url":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/","article_author":"https:\/\/facebook.com\/codeflretech","article_published_time":"2022-09-08T19:44:29+00:00","article_modified_time":"2022-09-08T19:44:32+00:00","og_image":[{"width":616,"height":477,"url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png","type":"image\/png"}],"author":"codeflare","twitter_card":"summary_large_image","twitter_creator":"@codeflaretech","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#article","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/"},"author":{"name":"codeflare","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a"},"headline":"How to Create Your First Node JS Application","datePublished":"2022-09-08T19:44:29+00:00","dateModified":"2022-09-08T19:44:32+00:00","mainEntityOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/"},"wordCount":352,"commentCount":0,"publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png","articleSection":["softare development"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/","url":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/","name":"How to Create Your First Node JS Application","isPartOf":{"@id":"https:\/\/codeflarelimited.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#primaryimage"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#primaryimage"},"thumbnailUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png","datePublished":"2022-09-08T19:44:29+00:00","dateModified":"2022-09-08T19:44:32+00:00","description":"Node.js is useful for building back-end services like APIs, Web Applications or Mobile Applications. It\u2019s used in production by large ...","breadcrumb":{"@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#primaryimage","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png","width":616,"height":477,"caption":"create a node js application"},{"@type":"BreadcrumbList","@id":"https:\/\/codeflarelimited.com\/blog\/how-to-create-your-first-node-js-application\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codeflarelimited.com\/blog\/"},{"@type":"ListItem","position":2,"name":"softare development","item":"https:\/\/codeflarelimited.com\/blog\/softare-development\/"},{"@type":"ListItem","position":3,"name":"How to Create Your First Node JS Application"}]},{"@type":"WebSite","@id":"https:\/\/codeflarelimited.com\/blog\/#website","url":"https:\/\/codeflarelimited.com\/blog\/","name":"","description":"Sustainable solutions","publisher":{"@id":"https:\/\/codeflarelimited.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codeflarelimited.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codeflarelimited.com\/blog\/#organization","name":"Codeflare Limited","url":"https:\/\/codeflarelimited.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","contentUrl":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2020\/11\/codeflare.png","width":1040,"height":263,"caption":"Codeflare Limited"},"image":{"@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/codeflarelimited.com\/blog\/#\/schema\/person\/7e65653d49add95629f8c1053c5cd76a","name":"codeflare","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/59cef917c86d965eea581d2747f51bd6382003a68bfce7c8a4dfec98b4cd838d?s=96&d=mm&r=g","caption":"codeflare"},"description":"Latest tech news and coding tips.","sameAs":["https:\/\/codeflarelimited.com\/blog","https:\/\/facebook.com\/codeflretech","https:\/\/instagram.com\/codeflaretech","https:\/\/x.com\/codeflaretech","https:\/\/www.youtube.com\/channel\/UCuBLtiYqsajHdqw0uyt7Ofw?sub_confirmation=1"],"url":"https:\/\/codeflarelimited.com\/blog\/author\/watcher\/"}]}},"jetpack_featured_media_url":"https:\/\/codeflarelimited.com\/blog\/wp-content\/uploads\/2022\/09\/carbon-3.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/995","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/comments?post=995"}],"version-history":[{"count":1,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/995\/revisions"}],"predecessor-version":[{"id":1002,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/posts\/995\/revisions\/1002"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media\/997"}],"wp:attachment":[{"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/media?parent=995"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/categories?post=995"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codeflarelimited.com\/blog\/wp-json\/wp\/v2\/tags?post=995"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}