{"id":1189,"date":"2020-12-28T14:30:04","date_gmt":"2020-12-28T14:30:04","guid":{"rendered":"https:\/\/www.letscloud.io\/blog\/?p=1189"},"modified":"2020-12-24T17:45:01","modified_gmt":"2020-12-24T17:45:01","slug":"javascript_nodejs","status":"publish","type":"post","link":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/","title":{"rendered":"Are Node.js and JavaScript the same?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">What is JavaScript and why do I need it? <\/h2>\n\n\n\n<p><strong>Node.js and JavaScript<\/strong> are both top picks for or all the front-end Dev rookies out there.<\/p>\n\n\n\n<p>They work together, but of course, they aren&#8217;t the same thing.<\/p>\n\n\n\n<p><strong>JavaScript<\/strong> came into this world to optimize web construction.<\/p>\n\n\n\n<div id=\"https:\/\/www.javascript.com\/\" class=\"wp-block-image\"><figure class=\"aligncenter size-medium\"><img fetchpriority=\"high\" decoding=\"async\" width=\"300\" height=\"300\" src=\"http:\/\/45.42.162.214\/wp-content\/uploads\/2020\/12\/javascript-736400_640-300x300.png\" alt=\"Javascript\" class=\"wp-image-1228\" srcset=\"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/javascript-736400_640-300x300.png 300w, https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/javascript-736400_640-150x150.png 150w, https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/javascript-736400_640.png 640w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><figcaption>Celebrating<br>25 years of JavaScript<\/figcaption><\/figure><\/div>\n\n\n\n<p>With its evolution, along with the ease of interpretation by web browsers, JavaScript has achieved all its current success.<\/p>\n\n\n\n<p>In 2020, <a href=\"https:\/\/madnight.github.io\/githut\/#\/pull_requests\/2020\/3\">according to GitHub<\/a>, JavaScript remains the most popular programming language in the world.&nbsp;<\/p>\n\n\n\n<p>It helps make websites interactive and even <a href=\"https:\/\/blog.jscrambler.com\/10-javascript-engines-to-develop-your-own-mobile-and-web-games\/\">build games<\/a>. It&#8217;s lightweight, flexible, and powerful.<\/p>\n\n\n\n<p>But what if, we take JavaScript beyond web navigators?<\/p>\n\n\n\n<p>That&#8217;s right, we are gonna talk about Node.JS.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is node.js and how it works?<\/h2>\n\n\n\n<p>Created in 2009 by Ryan Dahl, Node.js is defined as a server-side JavaScript execution environment.<\/p>\n\n\n\n<p>This means that with Node.js it is possible to create JavaScript applications to run as a standalone application on a machine, not depending on a browser for execution, as we are used to.<\/p>\n\n\n\n<p>Node.js is designed to build scalable network applications, many connections can be handled concurrently.<\/p>\n\n\n\n<p>Upon each connection, the callback is fired, but if there is no work to be done, Node.js will sleep.<\/p>\n\n\n\n<p>According to <a href=\"https:\/\/openjsf.org\/\">OpenJS Foundation<\/a>, this is in contrast to today&#8217;s more common concurrency model, in which OS threads are employed.&nbsp;<\/p>\n\n\n\n<p>Thread-based networking is relatively inefficient and very difficult to use.&nbsp;<\/p>\n\n\n\n<p>Furthermore, users of Node.js are free from the worries of dead-locking the process, since there are no locks.&nbsp;<\/p>\n\n\n\n<p>Almost no function in Node.js directly performs I\/O, so the process never blocks. Because nothing blocks, scalable systems are very reasonable to develop in Node.js.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Event Loop<\/h2>\n\n\n\n<p>Node.js uses only one thread, called the Event Loop.<\/p>\n\n\n\n<p>The event loop is the true coding engineering treasure, allowing Node.js to perform non-blocking I\/O operations.<\/p>\n\n\n\n<p>When one of these operations completes, the kernel tells Node.js so that the appropriate callback may be added to the poll queue to be executed.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img decoding=\"async\" width=\"962\" height=\"582\" data-src=\"http:\/\/45.42.162.214\/wp-content\/uploads\/2020\/12\/the-event-loop.png\" alt=\"\" class=\"wp-image-1225 lazyload\" data-srcset=\"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/the-event-loop.png 962w, https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/the-event-loop-300x181.png 300w, https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/the-event-loop-768x465.png 768w\" data-sizes=\"(max-width: 962px) 100vw, 962px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 962px; --smush-placeholder-aspect-ratio: 962\/582;\" \/><figcaption>Each box will be referred to as a &#8220;phase&#8221; of the event loop<\/figcaption><\/figure><\/div>\n\n\n\n<p>The Event Loop architecture allows a larger number of competing requests to be handled.<\/p>\n\n\n\n<p>When compared to the traditional model, there is another advantage: the pricing.<\/p>\n\n\n\n<p>The multi-thread model requires high computational consumption of servers.<\/p>\n\n\n\n<p>To guarantee the creation and maintenance of threads for each request, the investment in hardware would be pretty significant.<\/p>\n\n\n\n<p>This is a simplification, for more information about The Node.js Event Loop check out the official <a href=\"https:\/\/nodejs.org\/en\/docs\/guides\/event-loop-timers-and-nexttick\/\" rel=\"noreferrer noopener\" target=\"_blank\">Node.js<\/a> website.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Where can You use Node.js?<\/h2>\n\n\n\n<p>Node.js proved to be a tool with a lot of adaptabilities.<\/p>\n\n\n\n<p>You can implement Node.js in different situations, with different objectives.<\/p>\n\n\n\n<p><strong>Run MockServers:<\/strong> Because of its very popular language in the web universe, Node.js can test different possibilities in different scenarios. <a href=\"https:\/\/medium.com\/better-programming\/build-a-nodejs-mock-server-api-with-random-data-86303db9156a\">You can mock systems<\/a> that utilize HTTP or HTTPS with a proxy for recording requests sent by a system.<\/p>\n\n\n\n<p><strong>Scalable environments:<\/strong> Being capable of handling a large number of connections at the same time, Node is perfect in environments that have multiple concurrent connections.<\/p>\n\n\n\n<p><strong>Applications that have NoSQL:<\/strong> A NoSQL database is built with JavaScript Object Notation, so, the relationship with Node.js is fluid. In this way, objects can be migrated to the client-side, without requiring any kind of treatment, since there is no conversion of the data model.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to install Node.js?<\/h2>\n\n\n\n<p>If you already know the JavaScript language, learning Node.js will be more natural.<\/p>\n\n\n\n<p>Also, commonly referred to as the JavaScript backend, mastering Node.js can bring more employment possibilities in various projects.<\/p>\n\n\n\n<p>To learn about installing Node.js you can check out our <a href=\"https:\/\/www.letscloud.io\/community\/how-to-install-nodejs-on-ubuntu-2004-and-2010\" rel=\"noreferrer noopener\" target=\"_blank\">installation tutorial<\/a> in our community!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is JavaScript and why do I need it? Node.js and JavaScript are both top picks for or all the front-end Dev rookies out there. They work together, but of course, they aren&#8217;t the same thing. JavaScript came into this world to optimize web construction. With its evolution, along with the ease of interpretation by &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Are Node.js and JavaScript the same?&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":1226,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1189","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-community","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Are Node.js and JavaScript the same? - LetsCloud Blog<\/title>\n<meta name=\"description\" content=\"JavaScript came into this world to optimize web construction. Node.js can be defined as a server-side JavaScript execution environment...\" \/>\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.letscloud.io\/blog\/javascript_nodejs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Are Node.js and JavaScript the same? - LetsCloud Blog\" \/>\n<meta property=\"og:description\" content=\"JavaScript came into this world to optimize web construction. Node.js can be defined as a server-side JavaScript execution environment...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/\" \/>\n<meta property=\"og:site_name\" content=\"LetsCloud Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/LetsCloudOfficial\" \/>\n<meta property=\"article:published_time\" content=\"2020-12-28T14:30:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/capa-nodejs.png\" \/>\n\t<meta property=\"og:image:width\" content=\"910\" \/>\n\t<meta property=\"og:image:height\" content=\"505\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"LetsCloud Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@letscloudInc\" \/>\n<meta name=\"twitter:site\" content=\"@letscloudInc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"LetsCloud Team\" \/>\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.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/\"},\"author\":{\"name\":\"LetsCloud Team\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/db5dc1b68cac3498c8aeb0b56f1dbdf6\"},\"headline\":\"Are Node.js and JavaScript the same?\",\"datePublished\":\"2020-12-28T14:30:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/\"},\"wordCount\":637,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/capa-nodejs.png\",\"articleSection\":[\"Community\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/\",\"name\":\"Are Node.js and JavaScript the same? - LetsCloud Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/capa-nodejs.png\",\"datePublished\":\"2020-12-28T14:30:04+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/db5dc1b68cac3498c8aeb0b56f1dbdf6\"},\"description\":\"JavaScript came into this world to optimize web construction. Node.js can be defined as a server-side JavaScript execution environment...\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/capa-nodejs.png\",\"contentUrl\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/capa-nodejs.png\",\"width\":910,\"height\":505,\"caption\":\"Node.js javascript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/javascript_nodejs\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Are Node.js and JavaScript the same?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/\",\"name\":\"LetsCloud Blog\",\"description\":\"Everything you need. Nothing you don\u2019t.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/#\\\/schema\\\/person\\\/db5dc1b68cac3498c8aeb0b56f1dbdf6\",\"name\":\"LetsCloud Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g\",\"caption\":\"LetsCloud Team\"},\"url\":\"https:\\\/\\\/www.letscloud.io\\\/blog\\\/author\\\/letscloud\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Are Node.js and JavaScript the same? - LetsCloud Blog","description":"JavaScript came into this world to optimize web construction. Node.js can be defined as a server-side JavaScript execution environment...","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.letscloud.io\/blog\/javascript_nodejs\/","og_locale":"en_US","og_type":"article","og_title":"Are Node.js and JavaScript the same? - LetsCloud Blog","og_description":"JavaScript came into this world to optimize web construction. Node.js can be defined as a server-side JavaScript execution environment...","og_url":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/","og_site_name":"LetsCloud Blog","article_publisher":"https:\/\/www.facebook.com\/LetsCloudOfficial","article_published_time":"2020-12-28T14:30:04+00:00","og_image":[{"width":910,"height":505,"url":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/capa-nodejs.png","type":"image\/png"}],"author":"LetsCloud Team","twitter_card":"summary_large_image","twitter_creator":"@letscloudInc","twitter_site":"@letscloudInc","twitter_misc":{"Written by":"LetsCloud Team","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#article","isPartOf":{"@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/"},"author":{"name":"LetsCloud Team","@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/db5dc1b68cac3498c8aeb0b56f1dbdf6"},"headline":"Are Node.js and JavaScript the same?","datePublished":"2020-12-28T14:30:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/"},"wordCount":637,"commentCount":0,"image":{"@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/capa-nodejs.png","articleSection":["Community"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/","url":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/","name":"Are Node.js and JavaScript the same? - LetsCloud Blog","isPartOf":{"@id":"https:\/\/www.letscloud.io\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#primaryimage"},"image":{"@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/capa-nodejs.png","datePublished":"2020-12-28T14:30:04+00:00","author":{"@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/db5dc1b68cac3498c8aeb0b56f1dbdf6"},"description":"JavaScript came into this world to optimize web construction. Node.js can be defined as a server-side JavaScript execution environment...","breadcrumb":{"@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#primaryimage","url":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/capa-nodejs.png","contentUrl":"https:\/\/www.letscloud.io\/blog\/wp-content\/uploads\/2020\/12\/capa-nodejs.png","width":910,"height":505,"caption":"Node.js javascript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.letscloud.io\/blog\/javascript_nodejs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.letscloud.io\/blog\/"},{"@type":"ListItem","position":2,"name":"Are Node.js and JavaScript the same?"}]},{"@type":"WebSite","@id":"https:\/\/www.letscloud.io\/blog\/#website","url":"https:\/\/www.letscloud.io\/blog\/","name":"LetsCloud Blog","description":"Everything you need. Nothing you don\u2019t.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.letscloud.io\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.letscloud.io\/blog\/#\/schema\/person\/db5dc1b68cac3498c8aeb0b56f1dbdf6","name":"LetsCloud Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ccae1dbb34f990736eba7967e6dfaf22ad95b4790915f19a175e53d146ad0a71?s=96&d=mm&r=g","caption":"LetsCloud Team"},"url":"https:\/\/www.letscloud.io\/blog\/author\/letscloud\/"}]}},"_links":{"self":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts\/1189","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/comments?post=1189"}],"version-history":[{"count":0,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/posts\/1189\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/media\/1226"}],"wp:attachment":[{"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/media?parent=1189"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/categories?post=1189"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.letscloud.io\/blog\/wp-json\/wp\/v2\/tags?post=1189"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}