{"id":359,"date":"2023-09-06T02:15:43","date_gmt":"2023-09-06T01:15:43","guid":{"rendered":"https:\/\/harmonweb.com\/blog\/?p=359"},"modified":"2023-09-06T02:15:43","modified_gmt":"2023-09-06T01:15:43","slug":"setting-up-nodejs-on-harmonweb-shared-hosting","status":"publish","type":"post","link":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/","title":{"rendered":"Setting up Nodejs on Harmonweb Shared hosting"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">What is Nodejs?<\/h2>\n\n\n\n<p>Node.js is an open-source server side runtime environment built on Chrome&#8217;s V8 JavaScript engine. It provides an event driven, non-blocking (asynchronous) I\/O and cross-platform runtime environment for building highly scalable server-side application using <strong>JavaScript<\/strong>.<\/p>\n\n\n\n<p>Node.js can be used to build different types of applications such as:  command line application, web application, real-time chat application, REST API server etc. However, it is mainly used to build network programs like web servers, similar to PHP, Java, or ASP.NET.<\/p>\n\n\n\n<p>Some popular websites using Nodejs are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Netflix<\/li><li>Ebay<\/li><li>Paypal<\/li><li>Trello<\/li><li>Uber &amp; Lots more.<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How to setup Nodejs on cpanel<\/h2>\n\n\n\n<p>If you already have a hosting plan, you can login to cpanel using your cpanel credentials. But if you&#8217;re yet to buy, you can purchase a shared hosting plan from <a href=\"https:\/\/harmonweb.com\/hosting\/shared-hosting\">Harmonweb<\/a>.<\/p>\n\n\n\n<p>To set up a Node.js application using cPanel, use the fprocedures below.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Create the application<\/h3>\n\n\n\n<ol class=\"wp-block-list\"><li>Login to your cpanel &#8211; <a href=\"https:\/\/harmonweb.com\/blog\/how-to-login-to-my-cpanel-account-from-my-harmonweb-client-area\/\">Learn how to login to your cpanel here<\/a><\/li><li>In the&nbsp;<strong>SOFTWARE<\/strong>&nbsp;section of the cPanel&nbsp;home screen, click&nbsp;<strong>Setup Node.js App<\/strong>.<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.a2hosting.com\/images\/uploads\/knowledgebase_images\/kb-setup-node-app-icon.png\" alt=\"\"\/><\/figure>\n\n\n\n<p>3. Click&nbsp;<strong>CREATE APPLICATION<\/strong>&nbsp;to start the application setup.<\/p>\n\n\n\n<p>4. Fill in all the fields.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.a2hosting.com\/images\/uploads\/knowledgebase_images\/kb-node-application-settings.png\" alt=\"\"\/><\/figure>\n\n\n\n<ul class=\"wp-block-list\"><li><em><strong>Node.js version<\/strong>\u00a0&#8211; select your perferred version from the drop down list<\/em><\/li><li><em><strong>Application mode<\/strong>\u00a0&#8211; choose\u00a0<strong>Development<\/strong>\u00a0or\u00a0<strong>Production<\/strong>\u00a0from the\u00a0list. Development may be chosen initially and changed to production later.<\/em><\/li><li><em><strong>Application root<\/strong>\u00a0&#8211; the file system location for application files. The entry will be appended to\u00a0\/home\/username\u00a0to form the complete path to the application files in the cPanel home directory.<\/em><\/li><li><strong>Application URL<\/strong>\u00a0&#8211; the address of\u00a0the application on the Internet<\/li><li><strong><strong>Application startup file<\/strong>\u00a0&#8211; <\/strong>the initial file that will be processed when launching the application<\/li><\/ul>\n\n\n\n<p>5. When the form is complete, click&nbsp;the <strong>CREATE<\/strong> Button.<\/p>\n\n\n\n<p>6. The application should start automatically.&nbsp;To view&nbsp;a test page for the application, click&nbsp;<strong>OPEN<\/strong><\/p>\n\n\n\n<p>Now you have successfully installed Nodejs on your server. If you got to this step, Grab a coffee and take a deep breath because you are only few steps away to your nodejs journey.<\/p>\n\n\n\n<p> Now lets create a package.json file and install npm to enhance the application enviroment. To do so, follow the next two steps.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Create package.json file<\/h3>\n\n\n\n<p>To create the&nbsp;<em>package.json<\/em>&nbsp;file, follow these steps below:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>In the files section of cpanel main page, locate file manager and open.<\/li><li>In the left hand column of File Manager, click the text of the application root folder.<\/li><li>Click\u00a0<strong>+File<\/strong>\u00a0icon to create a new file.<\/li><li>\u00a0In the\u00a0<strong>New File <\/strong>dialog box, type the filename\u00a0<strong>package.json<\/strong>, and then click\u00a0<strong>Create New File<\/strong>.<\/li><li>Right click on the <strong>package.json<\/strong> file and select edit.<\/li><li>Type the following json code on the etxt editor screen and click <strong>Save Changes<\/strong>\u00a0to save the file:<\/li><\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>{\r\n  \"name\": \"app\",\r\n  \"version\": \"1.0.0\",\r\n  \"description\": \"My App\",\r\n  \"main\": \"app.js\",\r\n  \"scripts\": {\r\n    \"test\": \"echo \\\"Error: no test specified\\\" &amp;&amp; exit 1\"\r\n  },\r\n  \"author\": \"\",\r\n  \"license\": \"ISC\"\r\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Installing npm<\/h3>\n\n\n\n<p>To\u00a0<strong>make<\/strong>\u00a0use of these tools (or packages) in Node. js,\u00a0<strong>we<\/strong>\u00a0need to be able to\u00a0<strong>install<\/strong>\u00a0and manage them in a useful way. This is where\u00a0<strong>npm<\/strong>, the Node package manager, comes in. It installs the packages\u00a0<strong>you<\/strong>\u00a0want to use and provides a useful interface to work with them. <\/p>\n\n\n\n<p>Follow the steps below to install npm.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>In the\u00a0<strong>SOFTWARE<\/strong>\u00a0section of the cPanel home screen, click\u00a0<strong>Setup Node.js App<\/strong><\/li><li>In the\u00a0<strong>Actions<\/strong>\u00a0column of the\u00a0<strong>Web Applications<\/strong>\u00a0list, click the pencil icon to edit the application<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" src=\"https:\/\/www.a2hosting.com\/images\/uploads\/knowledgebase_images\/kb-node-edit-application-button.png\" alt=\"\"\/><\/figure>\n\n\n\n<p>3. Click\u00a0<strong>Run NPM Install<\/strong> button.<\/p>\n\n\n\n<p>4. The NPM installation runs and displays a success indicator when complete.<\/p>\n\n\n\n<p>Congratulations you just created a nodejs application, created a package.json file and installed npm on your cpanel.Let us know where you are facing problems in the comment section.<\/p>\n\n\n\n<p> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is Nodejs? Node.js is an open-source server side runtime environment built on Chrome&#8217;s V8 JavaScript engine. It&hellip;<\/p>\n","protected":false},"author":1,"featured_media":362,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[158],"tags":[],"class_list":["post-359","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-troubleshooting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Setting up Nodejs on Harmonweb Shared hosting | HarmonWeb Blog<\/title>\n<meta name=\"description\" content=\"Here you will learn how to create a nodejs application on your harmonweb shared hosting.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setting up Nodejs on Harmonweb Shared hosting | HarmonWeb Blog\" \/>\n<meta property=\"og:description\" content=\"Here you will learn how to create a nodejs application on your harmonweb shared hosting.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/\" \/>\n<meta property=\"og:site_name\" content=\"HarmonWeb Blog\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-06T01:15:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2021\/04\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png?v=1617581572\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"John Adegoke\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"John Adegoke\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/\"},\"author\":{\"name\":\"John Adegoke\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/person\\\/e9bc75c3e7e30a261690c47ec872a8fc\"},\"headline\":\"Setting up Nodejs on Harmonweb Shared hosting\",\"datePublished\":\"2023-09-06T01:15:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/\"},\"wordCount\":620,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png\",\"articleSection\":[\"Troubleshooting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/\",\"name\":\"Setting up Nodejs on Harmonweb Shared hosting | HarmonWeb Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png\",\"datePublished\":\"2023-09-06T01:15:43+00:00\",\"description\":\"Here you will learn how to create a nodejs application on your harmonweb shared hosting.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#primaryimage\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png\",\"contentUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/04\\\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png\",\"width\":1920,\"height\":1080,\"caption\":\"nodejs harmonweb\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/setting-up-nodejs-on-harmonweb-shared-hosting\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setting up Nodejs on Harmonweb Shared hosting\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/\",\"name\":\"HarmonWeb Blog\",\"description\":\"HarmonWeb\",\"publisher\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#organization\",\"name\":\"HarmonWeb\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/cropped-HARMON-WEB-LOGO-2.png\",\"contentUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/cropped-HARMON-WEB-LOGO-2.png\",\"width\":831,\"height\":172,\"caption\":\"HarmonWeb\"},\"image\":{\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/#\\\/schema\\\/person\\\/e9bc75c3e7e30a261690c47ec872a8fc\",\"name\":\"John Adegoke\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/litespeed\\\/avatar\\\/0843e926db683e41ace2aee54210b841.jpg?ver=1776839677\",\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/litespeed\\\/avatar\\\/0843e926db683e41ace2aee54210b841.jpg?ver=1776839677\",\"contentUrl\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/wp-content\\\/litespeed\\\/avatar\\\/0843e926db683e41ace2aee54210b841.jpg?ver=1776839677\",\"caption\":\"John Adegoke\"},\"sameAs\":[\"https:\\\/\\\/harmonweb.com\\\/blog\"],\"url\":\"https:\\\/\\\/harmonweb.com\\\/blog\\\/author\\\/harmonweb\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setting up Nodejs on Harmonweb Shared hosting | HarmonWeb Blog","description":"Here you will learn how to create a nodejs application on your harmonweb shared hosting.","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:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/","og_locale":"en_US","og_type":"article","og_title":"Setting up Nodejs on Harmonweb Shared hosting | HarmonWeb Blog","og_description":"Here you will learn how to create a nodejs application on your harmonweb shared hosting.","og_url":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/","og_site_name":"HarmonWeb Blog","article_published_time":"2023-09-06T01:15:43+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2021\/04\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png?v=1617581572","type":"image\/png"}],"author":"John Adegoke","twitter_card":"summary_large_image","twitter_misc":{"Written by":"John Adegoke","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#article","isPartOf":{"@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/"},"author":{"name":"John Adegoke","@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/person\/e9bc75c3e7e30a261690c47ec872a8fc"},"headline":"Setting up Nodejs on Harmonweb Shared hosting","datePublished":"2023-09-06T01:15:43+00:00","mainEntityOfPage":{"@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/"},"wordCount":620,"commentCount":1,"publisher":{"@id":"https:\/\/harmonweb.com\/blog\/#organization"},"image":{"@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#primaryimage"},"thumbnailUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2021\/04\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png","articleSection":["Troubleshooting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/","url":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/","name":"Setting up Nodejs on Harmonweb Shared hosting | HarmonWeb Blog","isPartOf":{"@id":"https:\/\/harmonweb.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#primaryimage"},"image":{"@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#primaryimage"},"thumbnailUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2021\/04\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png","datePublished":"2023-09-06T01:15:43+00:00","description":"Here you will learn how to create a nodejs application on your harmonweb shared hosting.","breadcrumb":{"@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#primaryimage","url":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2021\/04\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png","contentUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2021\/04\/Black-and-Blue-Simple-Technology-Pitch-Deck-Presentation-1.png","width":1920,"height":1080,"caption":"nodejs harmonweb"},{"@type":"BreadcrumbList","@id":"https:\/\/harmonweb.com\/blog\/setting-up-nodejs-on-harmonweb-shared-hosting\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/harmonweb.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Setting up Nodejs on Harmonweb Shared hosting"}]},{"@type":"WebSite","@id":"https:\/\/harmonweb.com\/blog\/#website","url":"https:\/\/harmonweb.com\/blog\/","name":"HarmonWeb Blog","description":"HarmonWeb","publisher":{"@id":"https:\/\/harmonweb.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/harmonweb.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/harmonweb.com\/blog\/#organization","name":"HarmonWeb","url":"https:\/\/harmonweb.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2020\/06\/cropped-HARMON-WEB-LOGO-2.png","contentUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/uploads\/2020\/06\/cropped-HARMON-WEB-LOGO-2.png","width":831,"height":172,"caption":"HarmonWeb"},"image":{"@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/harmonweb.com\/blog\/#\/schema\/person\/e9bc75c3e7e30a261690c47ec872a8fc","name":"John Adegoke","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/harmonweb.com\/blog\/wp-content\/litespeed\/avatar\/0843e926db683e41ace2aee54210b841.jpg?ver=1776839677","url":"https:\/\/harmonweb.com\/blog\/wp-content\/litespeed\/avatar\/0843e926db683e41ace2aee54210b841.jpg?ver=1776839677","contentUrl":"https:\/\/harmonweb.com\/blog\/wp-content\/litespeed\/avatar\/0843e926db683e41ace2aee54210b841.jpg?ver=1776839677","caption":"John Adegoke"},"sameAs":["https:\/\/harmonweb.com\/blog"],"url":"https:\/\/harmonweb.com\/blog\/author\/harmonweb\/"}]}},"_links":{"self":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts\/359","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/comments?post=359"}],"version-history":[{"count":4,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts\/359\/revisions"}],"predecessor-version":[{"id":367,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/posts\/359\/revisions\/367"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/media\/362"}],"wp:attachment":[{"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/media?parent=359"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/categories?post=359"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/harmonweb.com\/blog\/wp-json\/wp\/v2\/tags?post=359"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}