{"id":8806,"date":"2023-07-07T07:35:02","date_gmt":"2023-07-07T07:35:02","guid":{"rendered":"https:\/\/truehost.com\/support\/?post_type=ht_kb&#038;p=8806"},"modified":"2024-10-11T12:32:59","modified_gmt":"2024-10-11T12:32:59","password":"","slug":"hosting-node-js-application-on-ubuntu-20-04","status":"publish","type":"docs","link":"https:\/\/www.truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/","title":{"rendered":"How To Host A nodejs Application On Ubuntu 20.04"},"content":{"rendered":"\n<p>Let\u2019s share on hosting Node.js application on Ubuntu 20.04. <a href=\"https:\/\/nodejs.org\/en\/about\">Node.js<\/a> is an open-source, cross-platform JavaScript runtime environment.&nbsp;<\/p>\n\n\n\n<p>It is designed to build scalable network applications. Node.js uses an event-driven, non-blocking I\/O model that makes it highly efficient.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"585\" src=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1024x585.png\" alt=\"Hosting Node.js application on Ubuntu 20.04\" class=\"wp-image-8807\" style=\"width:673px;height:384px\" srcset=\"https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1024x585.png 1024w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-300x171.png 300w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-768x439.png 768w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-50x29.png 50w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1536x878.png 1536w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-2048x1170.png 2048w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-920x526.png 920w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-600x343.png 600w, https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-320x183.png 320w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>This platform runs on Linux, macOS, FreeBSD, and Windows. It is a good choice for real-time applications, as it can handle many concurrent connections.<\/p>\n\n\n\n<p>Before hosting the node.js application on Ubuntu 20.04, we need the following:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/truehost.com\/support\/knowledge-base\/python-app-hosting-on-ubuntu-20-04\/\">Ubuntu 20.04 <\/a>server setup<\/li>\n\n\n\n<li>Nginx installed and configured with SSL.<\/li>\n\n\n\n<li>Domain name pointed at your server\u2019s public IP.<\/li>\n<\/ul>\n\n\n\n<p>With these, you are ready to set up your environment.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Let\u2019s begin: Hosting Node.js application on Ubuntu 20.04<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">1. First, you need to install the latest version of node.js.&nbsp;<\/h3>\n\n\n\n<p>Achieved through using this code:<\/p>\n\n\n\n<p>Go to github on this URL to locate the version you wish to install .<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/nodesource\/distributions\">https:\/\/github.com\/nodesource\/distributions<\/a><\/p>\n\n\n\n<p><em>cd ~<\/em><\/p>\n\n\n\n<p>For us we shall use the latest version which is 22.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><em><code>curl -fsSL https:\/\/deb.nodesource.com\/setup_22.x -o nodesource_setup.sh<\/code><\/em><\/p>\n\n\n\n<p>Setup: <\/p>\n\n\n\n<p><code>bash nodesource_setup.sh<\/code><\/p>\n\n\n\n<p>It sets up the PPA environment to add your node.js. Now it\u2019s time to install the node.js with this command:<\/p>\n\n\n\n<p><em><code>sudo apt install nodejs<\/code><\/em><\/p>\n\n\n\n<p>Also, add some essential packages to ensure your build works perfectly. Run this code:<\/p>\n\n\n\n<p><em><code>sudo apt install build-essential<\/code><\/em><\/p>\n\n\n\n<p>Once done now, it\u2019s time to create your first application.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Let\u2019s create a node.js application.<\/h3>\n\n\n\n<p>We\u2019ll create a simple hello word node.js application. Run the following code to get started:<\/p>\n\n\n\n<p><em>cd ~<\/em><\/p>\n\n\n\n<p><em><code>nano hello.js<\/code><\/em><\/p>\n\n\n\n<p><em>On the file that appears add this code to complete the process:<\/em><\/p>\n\n\n\n<p><em><code>const http = require('http');<\/code><\/em><\/p>\n\n\n\n<p><em><code>const hostname = 'localhost';<\/code><\/em><\/p>\n\n\n\n<p><em><code>const port = 3000;<\/code><\/em><\/p>\n\n\n\n<p><em><code>const server = http.createServer((req, res) => {<\/code><\/em><\/p>\n\n\n\n<p><em><code>\u00a0\u00a0res.statusCode = 200;<\/code><\/em><\/p>\n\n\n\n<p><em><code>\u00a0\u00a0res.setHeader('Content-Type', 'text\/plain');<\/code><\/em><\/p>\n\n\n\n<p><em><code>\u00a0\u00a0res.end('Hello World!\\n');<\/code><\/em><\/p>\n\n\n\n<p><em><code>});<\/code><\/em><\/p>\n\n\n\n<p><em><code>server.listen(port, hostname, () => {<\/code><\/em><\/p>\n\n\n\n<p><em><code>\u00a0\u00a0console.log(`Server running at http:\/\/${hostname}:${port}\/`);<\/code><\/em><\/p>\n\n\n\n<p><em><code>});<\/code><\/em><\/p>\n\n\n\n<p>Save the file and exit the editor. The Node.js application is configured to listen on the designated address (localhost) and port (3000).<\/p>\n\n\n\n<p>Then it responds with &#8220;Hello World!&#8221; and a 200 HTTP success code. External clients cannot connect to the application as it only listens on localhost.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Test your application<\/h3>\n\n\n\n<p>Let\u2019s figure out if it works by adding this code:<\/p>\n\n\n\n<p><em>node hello.js<\/em><\/p>\n\n\n\n<p>You should get such feedback:<\/p>\n\n\n\n<p><em>Server running at <\/em><code><a href=\"http:\/\/your-server-IP:3000\" rel=\"nofollow\">http:\/\/your-server-IP:3000<\/a><\/code><\/p>\n\n\n\n<p>Now open another instance of the terminal and run this:<\/p>\n\n\n\n<p><em>curl <a href=\"http:\/\/your-server-IP:3000\"><code><a href=\"http:\/\/your-server-IP:3000\" rel=\"nofollow\">http:\/\/your-server-IP:3000<\/a><\/code><\/a><\/em><\/p>\n\n\n\n<p>Here is your output:<\/p>\n\n\n\n<p><em>Hello World!<\/em><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Let\u2019s install node.js manager; PM2<\/h3>\n\n\n\n<p>It helps you manage your applications to run in the background. Let\u2019s use npm to install the latest version:<\/p>\n\n\n\n<p><code>sudo npm install -g pm2<\/code><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><\/pre>\n\n\n\n<p>Once done, let\u2019s test it by:<\/p>\n\n\n\n<p><em><code>pm2 start hello.js<\/code><\/em><\/p>\n\n\n\n<p>Now your environment is set. Let\u2019s set up the Nginx server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">5. Setting up Nginx<\/h3>\n\n\n\n<p>It ensures other users have access to your application. From the above setup, it runs on a localhost. Use this code:<\/p>\n\n\n\n<p>sudo apt install nginx -y<\/p>\n\n\n\n<p><code>sudo nano \/etc\/nginx\/sites-available\/default<\/code><\/p>\n\n\n\n<p><code><br><\/code><em><code>sudo nano \/etc\/nginx\/sites-available\/example.com<\/code><\/em><\/p>\n\n\n\n<p>By configuring the server, it is set to handle requests at its root.&nbsp;<\/p>\n\n\n\n<p>If our server is accessed at example.com, typing https:\/\/example.com\/ in a web browser will send the request to hello.js.&nbsp;<\/p>\n\n\n\n<p>The hello.js file is listening on port 3000 at the localhost.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Final words; hosting Node.js application on Ubuntu 20.04<\/strong><\/h2>\n\n\n\n<p>Now you see hosting Node.js application on Ubuntu 20.04 is that easy!&nbsp;<\/p>\n\n\n\n<p>It involves setting up the necessary software, configuring the server, and deploying your application.&nbsp;<\/p>\n\n\n\n<p>Following the outlined steps, you can successfully host your Node.js application on Ubuntu 20.04. Take advantage of its stability, security, and flexibility.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Let\u2019s share on hosting Node.js application on Ubuntu 20.04. Node.js is an open-source, cross-platform JavaScript runtime environment.&nbsp; It is designed to build scalable network applications. Node.js uses an event-driven, non-blocking I\/O model that makes it highly efficient. This platform runs on Linux, macOS, FreeBSD, and Windows. It is a good choice for real-time applications, as [&hellip;]<\/p>\n","protected":false},"author":23,"featured_media":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"_eb_attr":"","_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0,"footnotes":""},"doc_category":[1879],"doc_tag":[],"class_list":["post-8806","docs","type-docs","status-publish","hentry","doc_category-servers"],"year_month":"2026-06","word_count":610,"total_views":0,"reactions":{"happy":0,"normal":0,"sad":0},"author_info":{"name":"Mark","author_nicename":"mark","author_url":"https:\/\/www.truehost.com\/support\/author\/mark\/"},"doc_category_info":[{"term_name":"Servers","term_url":"https:\/\/www.truehost.com\/support\/docs-category\/servers\/"}],"doc_tag_info":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Host A nodejs Application On Ubuntu 20.04<\/title>\n<meta name=\"description\" content=\"Try hosting Node.js application on Ubuntu 20.04 from this guide. Get your website or web application up and running instantly!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Host A nodejs Application On Ubuntu 20.04\" \/>\n<meta property=\"og:description\" content=\"Try hosting Node.js application on Ubuntu 20.04 from this guide. Get your website or web application up and running instantly!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-11T12:32:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1024x585.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/\",\"name\":\"How To Host A nodejs Application On Ubuntu 20.04\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/node.js-logo-image-1024x585.png\",\"datePublished\":\"2023-07-07T07:35:02+00:00\",\"dateModified\":\"2024-10-11T12:32:59+00:00\",\"description\":\"Try hosting Node.js application on Ubuntu 20.04 from this guide. Get your website or web application up and running instantly!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/node.js-logo-image-1024x585.png\",\"contentUrl\":\"https:\\\/\\\/truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2023\\\/07\\\/node.js-logo-image-1024x585.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/truehost.com\\\/support\\\/knowledge-base\\\/hosting-node-js-application-on-ubuntu-20-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Host A nodejs Application On Ubuntu 20.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#website\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"name\":\"\",\"description\":\"Help In a Click\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#organization\",\"name\":\"Truehost Kenya\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"contentUrl\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/wp-content\\\/uploads\\\/2026\\\/04\\\/cropped-image_2026-04-16_174808866.png\",\"width\":240,\"height\":48,\"caption\":\"Truehost Kenya\"},\"image\":{\"@id\":\"https:\\\/\\\/www.truehost.com\\\/support\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Host A nodejs Application On Ubuntu 20.04","description":"Try hosting Node.js application on Ubuntu 20.04 from this guide. Get your website or web application up and running instantly!","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:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/","og_locale":"en_US","og_type":"article","og_title":"How To Host A nodejs Application On Ubuntu 20.04","og_description":"Try hosting Node.js application on Ubuntu 20.04 from this guide. Get your website or web application up and running instantly!","og_url":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/","article_modified_time":"2024-10-11T12:32:59+00:00","og_image":[{"url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1024x585.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/","url":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/","name":"How To Host A nodejs Application On Ubuntu 20.04","isPartOf":{"@id":"https:\/\/www.truehost.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/#primaryimage"},"image":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/#primaryimage"},"thumbnailUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1024x585.png","datePublished":"2023-07-07T07:35:02+00:00","dateModified":"2024-10-11T12:32:59+00:00","description":"Try hosting Node.js application on Ubuntu 20.04 from this guide. Get your website or web application up and running instantly!","breadcrumb":{"@id":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/#primaryimage","url":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1024x585.png","contentUrl":"https:\/\/truehost.com\/support\/wp-content\/uploads\/2023\/07\/node.js-logo-image-1024x585.png"},{"@type":"BreadcrumbList","@id":"https:\/\/truehost.com\/support\/knowledge-base\/hosting-node-js-application-on-ubuntu-20-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.truehost.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Host A nodejs Application On Ubuntu 20.04"}]},{"@type":"WebSite","@id":"https:\/\/www.truehost.com\/support\/#website","url":"https:\/\/www.truehost.com\/support\/","name":"","description":"Help In a Click","publisher":{"@id":"https:\/\/www.truehost.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.truehost.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.truehost.com\/support\/#organization","name":"Truehost Kenya","url":"https:\/\/www.truehost.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","contentUrl":"https:\/\/www.truehost.com\/support\/wp-content\/uploads\/2026\/04\/cropped-image_2026-04-16_174808866.png","width":240,"height":48,"caption":"Truehost Kenya"},"image":{"@id":"https:\/\/www.truehost.com\/support\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs\/8806","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/types\/docs"}],"author":[{"embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/users\/23"}],"replies":[{"embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/comments?post=8806"}],"version-history":[{"count":4,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs\/8806\/revisions"}],"predecessor-version":[{"id":15002,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/docs\/8806\/revisions\/15002"}],"wp:attachment":[{"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/media?parent=8806"}],"wp:term":[{"taxonomy":"doc_category","embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/doc_category?post=8806"},{"taxonomy":"doc_tag","embeddable":true,"href":"https:\/\/www.truehost.com\/support\/wp-json\/wp\/v2\/doc_tag?post=8806"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}