{"id":17307,"date":"2022-12-24T13:24:00","date_gmt":"2022-12-24T07:54:00","guid":{"rendered":"https:\/\/www.milesweb.in\/hosting-faqs\/?p=17307"},"modified":"2022-12-29T16:33:19","modified_gmt":"2022-12-29T11:03:19","slug":"how-to-deploy-a-nodejs-project-on-centos7","status":"publish","type":"post","link":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/","title":{"rendered":"Know How to Deploy a Node.js Project on CentOS7"},"content":{"rendered":"\n<p>Node.js is basically a server-side platform that\u2019s built on Google Chrome\u2019s Javascript Engine (V8 Engine).<\/p>\n\n\n\n<p>Node.js is widely used for building web-based applications. It basically uses an event-driven, non-blocking I\/O model making it highly efficient and lightweight option for running real-time applications that run across the distributed devices.<\/p>\n\n\n\n<p>Here in this article, we will understand the steps to install Node.js using the Node version manager. And then, deploy a Node.js app project on VPS that runs on CentOS7. <\/p>\n\n\n\n<p><strong>Node.js Installation Steps<\/strong><\/p>\n\n\n\n<p><strong>How to Install Node.js Using the Node Version Manager?<\/strong><\/p>\n\n\n\n<p>You can even install Node.js through NVM, the Node version manager. This software piece lets you install and maintain the different Node.js versions and the packages associated with them at the same time.<\/p>\n\n\n\n<p>Now, for installing the NVM on CentOS 7, visit: <a href=\"https:\/\/github.com\/nvm-sh\/nvm\">GitHub page<\/a> . <\/p>\n\n\n\n<p>Go to the README file that\u2019s displayed on the main page. From here, copy the <strong><em>curl<\/em><\/strong> or <strong><em>wget<\/em><\/strong> command. It will take you to the recent version of the installation script.<\/p>\n\n\n\n<p>Depending on the latest version of NVM, you can download and execute the script by typing the command:<\/p>\n\n\n\n<p>curl&nbsp;<a href=\"https:\/\/raw.githubusercontent.com\/creationix\/nvm\/master\/install.sh\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/raw.githubusercontent.com\/creationix\/nvm\/master\/install.sh<\/a>&nbsp;| bash<\/p>\n\n\n\n<p>This will install the<strong> <em>nvm <\/em><\/strong>script to your user account. To use it, type the command:<\/p>\n\n\n\n<p><strong><em>source ~\/.bashrc<\/em><\/strong><strong><em><\/em><\/strong><\/p>\n\n\n\n<p>Now, you can ask NVM, which versions it knows, with the command given below:<\/p>\n\n\n\n<p><strong><em>nvm list-remote<\/em><\/strong><\/p>\n\n\n\n<p>It will list all the versions.<\/p>\n\n\n\n<p><em>You can easily install a version of Node.js by typing any of the releases you see. Here for example, to get the version <\/em><strong>nvm install v12.14.1, type:<\/strong><\/p>\n\n\n\n<p><strong><em>nvm install v12.14.1<\/em><\/strong><\/p>\n\n\n\n<p>You can even the different versions you have installed by typing:<br><strong><em>nvm list<\/em><\/strong><\/p>\n\n\n\n<p>-&gt;&nbsp;&nbsp;<strong><em>v12.14.1<\/em><\/strong><\/p>\n\n\n\n<p><strong><em>system<\/em><\/strong><\/p>\n\n\n\n<p>You can switch between the versions by typing the command given below:<\/p>\n\n\n\n<p><strong><em>nvm use v12.14.1<\/em><\/strong><\/p>\n\n\n\n<p><em>Now at last, to check whether the Node.js version is successfully installed, type the command:<\/em><\/p>\n\n\n\n<p><strong><em>node -v&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <\/em><\/strong><\/p>\n\n\n\n<p><em>This is how you can install Node.js using the Node.js version manager. <\/em><\/p>\n\n\n\n<p><strong>Steps to Deploy a Node.js Project<\/strong><\/p>\n\n\n\n<p><strong>Step 1: <\/strong>The first step is, create a test project file named <strong>app.js<\/strong><\/p>\n\n\n\n<p><strong>Step 2:<\/strong> Now, go back to \/root directory. Enter the command:<\/p>\n\n\n\n<p>     <strong><em>cd<\/em><\/strong><\/p>\n\n\n\n<p><strong>Step 3: <\/strong>Then, create the app.js project file:<\/p>\n\n\n\n<p>     <strong><em>touch app.js<\/em><\/strong><\/p>\n\n\n\n<p>To modify the app.js project file.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Run the below command to open the app.js file: <\/li><\/ul>\n\n\n\n<p><em>&nbsp;<strong>&nbsp; vim app.js<\/strong><\/em><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Press the <strong>I<\/strong> key for entering into the edit mode and add the content to app.js.<\/li><\/ul>\n\n\n\n<p>Here is an example, port 3300 is that is occupied by the project. The output is \u201cHello World.\u201d<\/p>\n\n\n\n<p>You can easily configure the project content and port number on the basis of your requirements.<\/p>\n\n\n\n<p><strong><em>const http = require(&#8216;http&#8217;);<\/em><\/strong><\/p>\n\n\n\n<p><strong><em>const hostname = &#8216;127.0.0.1&#8217;;<\/em><\/strong><\/p>\n\n\n\n<p><strong>c<em>onst port = 3300;<\/em><\/strong><\/p>\n\n\n\n<p><strong><em>const server = http.createServer((req, res) =&gt; {<\/em><\/strong><\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;<strong><em> res.statusCode = 200;<\/em><\/strong><\/p>\n\n\n\n<p>&nbsp;&nbsp;<strong><em>&nbsp; res.setHeader(&#8216;Content-Type&#8217;, &#8216;text\/plain&#8217;);<\/em><\/strong><\/p>\n\n\n\n<p>&nbsp;<strong><em>&nbsp;&nbsp; res.end(&#8216;Hello World\\n&#8217;);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/em><\/strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong><em>});<\/em><\/strong><\/p>\n\n\n\n<p><strong>s<em>erver.listen(port, hostnam<\/em><\/strong><em><strong>e, () =&gt; {<\/strong><\/em><\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp; <strong><em>console.<\/em>log(`Server running at http:\/\/${hostname}:${port}\/`);<\/strong><\/p>\n\n\n\n<p><strong><em>})<\/em><\/strong><em>;<\/em><\/p>\n\n\n\n<p><strong>Step 4: <\/strong>After adding the above content, press the <strong>Esc<\/strong> key to exit the edit mode.<\/p>\n\n\n\n<p>Also, enter: <strong>wq<\/strong> command and press the \u201c<strong>Enter\u201d<\/strong> key for saving and closing the file.<\/p>\n\n\n\n<p><strong>Step 5: <\/strong>Now to run the Node.js project and get the port number, enter the command given below:<\/p>\n\n\n\n<p>node ~\/app.js &amp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>Step 6:<\/strong> To check the network status and protocol stats:<\/p>\n\n\n\n<p>netstat \u2013tpln | grep :3300<\/p>\n\n\n\n<p>In the example, given above, port 3300 is by default included in the command output. It indicates that the project is running normally.Add port 3300 to TCP_IN on CSF or UFW firewall.<\/p>\n\n\n\n<p><strong>Step 7:<\/strong> Now, in your internet browser, enter <strong><em>http:\/\/&lt;IP Address of the Server&gt;:&lt;Port number&gt;<\/em><\/strong> in the address bar.<\/p>\n\n\n\n<p>Here in this example, the port number is 3300.<\/p>\n\n\n\n<p>At last, this page will be displayed with \u201cHello World\u201d text.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png\"><img decoding=\"async\" src=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png\" alt=\"\" class=\"wp-image-14557\"\/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Node.js is basically a server-side platform that\u2019s built on Google Chrome\u2019s Javascript Engine (V8 Engine). Node.js is widely used for building web-based applications. It basically uses an event-driven, non-blocking I\/O model making it highly efficient and lightweight option for running real-time applications that run across the distributed devices. Here in this article, we will understand [&hellip;]<\/p>\n","protected":false},"author":36,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[2972,2971],"class_list":["post-17307","post","type-post","status-publish","format-standard","placeholder-for-hentry","category-web-hosting-faq","tag-centos7","tag-node-js-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Know How to Deploy a Node.js Project on CentOS7 | MilesWeb<\/title>\n<meta name=\"description\" content=\"This process will help you in understanding how you can deploy a Node.js project on CentOS7.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Know How to Deploy a Node.js Project on CentOS7 | MilesWeb\" \/>\n<meta property=\"og:description\" content=\"This process will help you in understanding how you can deploy a Node.js project on CentOS7.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Hosting FAQs by MilesWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-24T07:54:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-29T11:03:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png\" \/>\n<meta name=\"author\" content=\"Nehal Khatri\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nehal Khatri\" \/>\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:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/\"},\"author\":{\"name\":\"Nehal Khatri\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/93565765cf85bc4be78b4d9ccbe294bb\"},\"headline\":\"Know How to Deploy a Node.js Project on CentOS7\",\"datePublished\":\"2022-12-24T07:54:00+00:00\",\"dateModified\":\"2022-12-29T11:03:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/\"},\"wordCount\":713,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png\",\"keywords\":[\"CentOS7\",\"Node.js\"],\"articleSection\":[\"Web Hosting FAQ\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/\",\"name\":\"Know How to Deploy a Node.js Project on CentOS7 | MilesWeb\",\"isPartOf\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png\",\"datePublished\":\"2022-12-24T07:54:00+00:00\",\"dateModified\":\"2022-12-29T11:03:19+00:00\",\"author\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/93565765cf85bc4be78b4d9ccbe294bb\"},\"description\":\"This process will help you in understanding how you can deploy a Node.js project on CentOS7.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage\",\"url\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png\",\"contentUrl\":\"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Know How to Deploy a Node.js Project on CentOS7\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#website\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/\",\"name\":\"Web Hosting FAQs by MilesWeb\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/93565765cf85bc4be78b4d9ccbe294bb\",\"name\":\"Nehal Khatri\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2022\/02\/nehal-khatri-150x150.png\",\"contentUrl\":\"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2022\/02\/nehal-khatri-150x150.png\",\"caption\":\"Nehal Khatri\"},\"description\":\"Nehal is an ardent content writer. She's passionate about crafting content that's simple but adds value. Her insatiable interest in writing has allowed her to explore her skills. She is adept and can write for different types of content formats.\",\"url\":\"https:\/\/www.milesweb.in\/hosting-faqs\/author\/nehal-khatri\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Know How to Deploy a Node.js Project on CentOS7 | MilesWeb","description":"This process will help you in understanding how you can deploy a Node.js project on CentOS7.","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:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/","og_locale":"en_US","og_type":"article","og_title":"Know How to Deploy a Node.js Project on CentOS7 | MilesWeb","og_description":"This process will help you in understanding how you can deploy a Node.js project on CentOS7.","og_url":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/","og_site_name":"Web Hosting FAQs by MilesWeb","article_published_time":"2022-12-24T07:54:00+00:00","article_modified_time":"2022-12-29T11:03:19+00:00","og_image":[{"url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png","type":"","width":"","height":""}],"author":"Nehal Khatri","twitter_misc":{"Written by":"Nehal Khatri","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#article","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/"},"author":{"name":"Nehal Khatri","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/93565765cf85bc4be78b4d9ccbe294bb"},"headline":"Know How to Deploy a Node.js Project on CentOS7","datePublished":"2022-12-24T07:54:00+00:00","dateModified":"2022-12-29T11:03:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/"},"wordCount":713,"commentCount":0,"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png","keywords":["CentOS7","Node.js"],"articleSection":["Web Hosting FAQ"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/","name":"Know How to Deploy a Node.js Project on CentOS7 | MilesWeb","isPartOf":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage"},"image":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage"},"thumbnailUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png","datePublished":"2022-12-24T07:54:00+00:00","dateModified":"2022-12-29T11:03:19+00:00","author":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/93565765cf85bc4be78b4d9ccbe294bb"},"description":"This process will help you in understanding how you can deploy a Node.js project on CentOS7.","breadcrumb":{"@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#primaryimage","url":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png","contentUrl":"https:\/\/www.milesweb.co.uk\/hosting-faqs\/wp-content\/uploads\/2022\/12\/hello-world.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/how-to-deploy-a-nodejs-project-on-centos7\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.milesweb.in\/hosting-faqs\/"},{"@type":"ListItem","position":2,"name":"Know How to Deploy a Node.js Project on CentOS7"}]},{"@type":"WebSite","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#website","url":"https:\/\/www.milesweb.in\/hosting-faqs\/","name":"Web Hosting FAQs by MilesWeb","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.milesweb.in\/hosting-faqs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/93565765cf85bc4be78b4d9ccbe294bb","name":"Nehal Khatri","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.milesweb.in\/hosting-faqs\/#\/schema\/person\/image\/","url":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2022\/02\/nehal-khatri-150x150.png","contentUrl":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-content\/uploads\/2022\/02\/nehal-khatri-150x150.png","caption":"Nehal Khatri"},"description":"Nehal is an ardent content writer. She's passionate about crafting content that's simple but adds value. Her insatiable interest in writing has allowed her to explore her skills. She is adept and can write for different types of content formats.","url":"https:\/\/www.milesweb.in\/hosting-faqs\/author\/nehal-khatri\/"}]}},"_links":{"self":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/17307","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/users\/36"}],"replies":[{"embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/comments?post=17307"}],"version-history":[{"count":14,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/17307\/revisions"}],"predecessor-version":[{"id":17331,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/posts\/17307\/revisions\/17331"}],"wp:attachment":[{"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/media?parent=17307"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/categories?post=17307"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.milesweb.in\/hosting-faqs\/wp-json\/wp\/v2\/tags?post=17307"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}