{"id":8048,"date":"2021-01-08T16:26:47","date_gmt":"2021-01-08T10:56:47","guid":{"rendered":"https:\/\/www.hiddenbrains.com\/blog\/?p=8048"},"modified":"2026-04-22T10:27:43","modified_gmt":"2026-04-22T10:27:43","slug":"deno-vs-nodejs-development","status":"publish","type":"post","link":"https:\/\/www.hiddenbrains.com\/blog\/deno-vs-nodejs-development.html","title":{"rendered":"Features and Quick Comparison between Deno vs. Node.js"},"content":{"rendered":"\n<p>The recent release of Deno v1 is creating a buzz. Several proclaim Deno to bring about the end of Node.js.Is Deno faster than Node? However, at this moment, it sounds like an exaggeration or an over-emphatic statement. The comparisons between Deno vs node.js are bound to happen. After all, the creator of both Deno vs Node.js happens to be the same person, Ryan Dahl.<\/p>\n\n\n\n<p>If you want to understand the difference between or decide whether to opt for Node.js, partner with <a href=\"https:\/\/www.hiddenbrains.com\/nodejs-development.html\" target=\"_blank\" rel=\"noopener noreferrer\">Node js application development company<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Deno<\/h2>\n\n\n\n<p>Deno is a runtime for JavaScript and TypeScript based on the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Chrome_V8\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">V8<\/a> JavaScript engine and the Rust programming language.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Advantages of Deno<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Well-designed module system.<\/li>\n\n\n\n<li>Security is the focal point.<\/li>\n\n\n\n<li>Supports TypeScript out of the box.<\/li>\n\n\n\n<li>Ships as a single executable with no dependencies.<\/li>\n\n\n\n<li>Built-in dependency inspector and a code formatter.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Security<\/h3>\n\n\n\n<p>Node.js allows seamless access encompassing filesystem, outgoing requests, environment variables, and more. While it is indeed a privilege to avail of such access, there is also a flipside. This unrestricted access opens up a world of risks during the development or coding process.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Deno provides command-line flag \u2018\u2013allow-net\u2019 to give access to all external permissions for the script.<\/li>\n\n\n\n<li>Deno uses command-line arguments to allow or disable access to different security features.<\/li>\n\n\n\n<li>Provides code to read from the folder, giving a security exception.<\/li>\n\n\n\n<li>Flags as part of the command line execute the script, providing permissions required for code.<\/li>\n<\/ul>\n\n\n\n<p>Unless stated clearly and otherwise, Deno won\u2019t be able to delete files from your program without your permission. Security is the focal point of Deno. It won\u2019t be able to access the hard drive or execute any potentially malicious actions without permission.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Package Management<\/h3>\n\n\n\n<p>Ever thought of rising above the clutter? Node.js provides npm to manage your packages. However, Deno lets you directly install packages from the URL or directly use them by importing packages as a library in the script from the URL. This eliminates the \u2018package.json\u2018 file for managing dependencies, as well as the \u2018node_modules\u2019 folder.<\/p>\n\n\n\n<p>This is one of the biggest advantages of Deno. But how does Deno manage dependencies? It is simple by allowing you to require modules from anywhere.<\/p>\n\n\n\n<p>There is no need to have your own centralized repository. This is one of the biggest differentiators; however, it is controversial also, since importing modules from 3rd party sources increases vulnerability.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Standard library<\/h3>\n\n\n\n<p>Ever since the first version of Node was launched, JavaScript has continued to evolve and improve its library. On the other hand, Deno comes with tall claims of having a complete standard library for developers to use official tools for basic functions and external libraries for complex tasks.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Module<\/h3>\n\n\n\n<p>Since the time when Node.js was created, the standard for JavaScript modules was CommonJS, supported by npm. Since then the ECMAScript committee has formalized a different standard, ES Modules, which is supported by <a href=\"https:\/\/jspm.org\/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">jspm<\/a>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Deno supports ES Modules.<\/h3>\n\n\n\n<p>In Node.js, you load CommonJS modules using the required keyword, standard and third-party alike, implicitly come from&nbsp;<a href=\"https:\/\/www.npmjs.com\/\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">npmjs.com<\/a>. In Deno, you load ES modules using the import keyword and explicitly state the URL.<\/p>\n\n\n\n<p>Deno modules can be hosted anywhere in absence of a centralized repository for third-party modules as well as cached and compiled locally, which means it is not updated unless asked for clarification.<\/p>\n\n\n\n<p>This quintessentially means you can run Deno programs already on your laptop with all imports (needs to be resolved once).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Node.js design shortcomings<\/h3>\n\n\n\n<p><a href=\"https:\/\/www.youtube.com\/watch?v=1gIiZfSbEAE\" target=\"_blank\" rel=\"noopener nofollow noreferrer\">According to Dahl<\/a>, the founder of Node.js and who designed both Node.js and Deno, Node.js comes with few design issues. Deno fixes all three problems. The core issues highlighted include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Poorly designed module system, with centralized distribution<\/li>\n\n\n\n<li>Several legacy APIs requiring support<\/li>\n\n\n\n<li>Lack of security<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Main comparisons Deno vs Node performance<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Deno\u2019s core is written in Rust programming language (core emphasis on safety) and Tokio. Nodejs was in C++.<\/li>\n\n\n\n<li>Typescript is a superset of javascript aimed at eliminating the development errors before code execution.<\/li>\n\n\n\n<li>Typescript is good for large applications.<\/li>\n\n\n\n<li>ES6 import statements as dependency management.<\/li>\n\n\n\n<li>No npm, effectively meaning that it does not use any package manager like npm and does not have package.json for module handling.<\/li>\n\n\n\n<li>Deno will break on unhandled exceptions which is not the case in NodeJS.<\/li>\n\n\n\n<li>Deno needs explicit permissions for file, network, environment access.<\/li>\n<\/ul>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" src=\"https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2020\/07\/deno-comparison-with-node.jpg\" alt=\"Deno Comparison with NodeJs\" class=\"wp-image-8615\"\/><\/figure>\n<\/div>\n\n\n<h2 class=\"wp-block-heading\">Will Deno replace Node.js? Is Deno faster than Node?<\/h2>\n\n\n\n<p>Maybe or maybe not. Node.js has a strong and huge ecosystem of developers. On the other hand, Deno is in its nascent stage and will take time to catch up.<\/p>\n\n\n\n<p>At this point, Deno is a cool new environment for building small private scripting projects in TypeScript. According to Dahl, Deno will never really challenge the success of Node.js considering its popularity. Nevertheless, once Deno matures it may become a viable choice for building larger projects.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Should we use Deno instead of Node.js?<\/h2>\n\n\n\n<p>Here the aim of Deno is not to become a Node replacement but instead an alternative. Most of the Node.js developers are content with its evolution and do not seek to switch up things. As Deno focuses on security and building of entire codebase in a single file, there comes an opportunity for Deno to be a go-to tool for JavaScript developers. It also includes the creation of utility scripts that on the other hand may have been written in languages like Python or Bash.<\/p>\n\n\n\n<div>\n<h2>FAQs<\/h2>\n<div>\n<h3 class=\"h3_class\">Which is faster in node.js vs deno?<\/h3>\n<div>\n<div>\n<p>Deno has better performance in c100 test, which implies Deno\u2019s performs well in a higher traffic networks than node.js. On the other hand, Python and PHP perform slower than deno and node.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div>\n<h3 class=\"h3_class\">Is Deno a framework?<\/h3>\n<div>\n<div>\n<p>Deno has been introduced newly and there are many frameworks underdeveloped to a point where they are unable to support automatic code generation, Open <a href=\"https:\/\/www.hiddenbrains.com\/api-solution.html\" target=\"_blank\" rel=\"noopener\">API integration<\/a>, contract-driven development, validation mechanisms, etc.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div>\n<h3 class=\"h3_class\">Is Deno\u2019s popularity increasing?<\/h3>\n<div>\n<div>\n<p>Deno which is a newly written implementation is a novel runtime that executes JavaScript and TypeScript which are now inside the web web browser. Know that Deno is not Node\u2019s extension. Just like Node, the popularity of Deno is increasing.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div>\n<h3 class=\"h3_class\">State the purpose of NodeJS<\/h3>\n<div>\n<div>\n<p>The purpose of Node.js is to merge event-driven programming with the web servers, which eventually leads to the fast development of web servers in JavaScript. It enables the developers to create servers that are scalable without the application of threading. They just apply the simple model of event-driven programming. It utilizes callbacks to inform about task completion.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Why Hidden Brains?<\/h2>\n\n\n\n<p><a href=\"https:\/\/www.hiddenbrains.com\/\">Hidden Brains<\/a> has been a leading IT company for all types of mobile and web applications development. With years of experience and expertise, we not only develop alluring and result-driven solutions but at the same time mobile and web solutions that have an aesthetic appeal to the user. We understand that every business has unique goals and requirements and likewise develop customized solutions that fulfill all your business needs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"frequently-asked-questions\">Frequently Asked Questions<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1776852855644\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">What is the main difference between Deno and Node.js?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Deno focuses on security and modern features, while Node.js emphasizes ecosystem maturity and flexibility.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1776852882588\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">Is Deno better than Node.js?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Not necessarily! Deno is ideal for secure, modern apps, while Node.js is better for large-scale projects with dependency needs.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1776852902218\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \">Does Deno use npm packages?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Deno does not rely on npm by default, but can support npm modules in newer versions.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1776852918845\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Which is faster: Deno or Node.js?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Performance depends on the use case; both runtimes are highly optimized and continuously evolving.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1776852943287\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Is Deno suitable for production?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes, Deno is production-ready, but adoption is still growing compared to Node.js.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1776852951874\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>Why do developers still prefer Node.js?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Due to its massive ecosystem, community support, and long-standing reliability.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>  <div class=\"related-post grid\">\r\n        <div class=\"headline\">Related Posts<\/div>\r\n    <div class=\"post-list \">\r\n\r\n            <div class=\"item\">\r\n            <div class=\"thumb post_thumb\">\r\n    <a title=\"Software Development for FinTech: Creating Embedded Finance Solutions for Enterprises\" href=\"https:\/\/www.hiddenbrains.com\/blog\/software-development-for-fintech.html\">\r\n\r\n      <img decoding=\"async\" width=\"778\" height=\"440\" src=\"https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/04\/Software-Development-for-FinTech.webp\" class=\"attachment-full size-full wp-post-image\" alt=\"Software Development for FinTech\" srcset=\"https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/04\/Software-Development-for-FinTech.webp 778w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/04\/Software-Development-for-FinTech-300x170.webp 300w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/04\/Software-Development-for-FinTech-768x434.webp 768w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/04\/Software-Development-for-FinTech-425x240.webp 425w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/04\/Software-Development-for-FinTech-650x368.webp 650w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/04\/Software-Development-for-FinTech-150x85.webp 150w\" sizes=\"(max-width: 778px) 100vw, 778px\" \/>\r\n\r\n    <\/a>\r\n  <\/div>\r\n\r\n  <a class=\"title post_title\" title=\"Software Development for FinTech: Creating Embedded Finance Solutions for Enterprises\" href=\"https:\/\/www.hiddenbrains.com\/blog\/software-development-for-fintech.html\">\r\n        Software Development for FinTech: Creating Embedded Finance Solutions for Enterprises  <\/a>\r\n\r\n        <\/div>\r\n              <div class=\"item\">\r\n            <div class=\"thumb post_thumb\">\r\n    <a title=\"AI Chatbots in Education: Use Cases, Benefits, and Real-world Examples\" href=\"https:\/\/www.hiddenbrains.com\/blog\/ai-chatbots-in-education.html\">\r\n\r\n      <img decoding=\"async\" width=\"778\" height=\"440\" src=\"https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/AI-Chatbots.webp\" class=\"attachment-full size-full wp-post-image\" alt=\"AI Chatbots in Education\" srcset=\"https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/AI-Chatbots.webp 778w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/AI-Chatbots-300x170.webp 300w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/AI-Chatbots-768x434.webp 768w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/AI-Chatbots-425x240.webp 425w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/AI-Chatbots-650x368.webp 650w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/AI-Chatbots-150x85.webp 150w\" sizes=\"(max-width: 778px) 100vw, 778px\" \/>\r\n\r\n    <\/a>\r\n  <\/div>\r\n\r\n  <a class=\"title post_title\" title=\"AI Chatbots in Education: Use Cases, Benefits, and Real-world Examples\" href=\"https:\/\/www.hiddenbrains.com\/blog\/ai-chatbots-in-education.html\">\r\n        AI Chatbots in Education: Use Cases, Benefits, and Real-world Examples  <\/a>\r\n\r\n        <\/div>\r\n              <div class=\"item\">\r\n            <div class=\"thumb post_thumb\">\r\n    <a title=\"How Do Application Modernization Strategies Maximize Enterprise Profitability?\" href=\"https:\/\/www.hiddenbrains.com\/blog\/application-modernization-strategy.html\">\r\n\r\n      <img decoding=\"async\" width=\"778\" height=\"440\" src=\"https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/The-Role-of-Application-Modernization-in-Increasing-Enterprise-Profits.webp\" class=\"attachment-full size-full wp-post-image\" alt=\"application modernization strategy\" srcset=\"https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/The-Role-of-Application-Modernization-in-Increasing-Enterprise-Profits.webp 778w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/The-Role-of-Application-Modernization-in-Increasing-Enterprise-Profits-300x170.webp 300w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/The-Role-of-Application-Modernization-in-Increasing-Enterprise-Profits-768x434.webp 768w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/The-Role-of-Application-Modernization-in-Increasing-Enterprise-Profits-425x240.webp 425w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/The-Role-of-Application-Modernization-in-Increasing-Enterprise-Profits-650x368.webp 650w, https:\/\/cdn-server-blog.hiddenbrains.com\/blog\/wp-content\/uploads\/2026\/03\/The-Role-of-Application-Modernization-in-Increasing-Enterprise-Profits-150x85.webp 150w\" sizes=\"(max-width: 778px) 100vw, 778px\" \/>\r\n\r\n    <\/a>\r\n  <\/div>\r\n\r\n  <a class=\"title post_title\" title=\"How Do Application Modernization Strategies Maximize Enterprise Profitability?\" href=\"https:\/\/www.hiddenbrains.com\/blog\/application-modernization-strategy.html\">\r\n        How Do Application Modernization Strategies Maximize Enterprise Profitability?  <\/a>\r\n\r\n        <\/div>\r\n      \r\n  <\/div>\r\n\r\n  <script>\r\n      <\/script>\r\n  <style>\r\n    .related-post {}\r\n\r\n    .related-post .post-list {\r\n      text-align: left;\r\n          }\r\n\r\n    .related-post .post-list .item {\r\n      margin: 5px;\r\n      padding: 0px;\r\n          }\r\n\r\n    .related-post .headline {\r\n      font-size: 18px !important;\r\n      color: #000000 !important;\r\n          }\r\n\r\n    .related-post .post-list .item .post_thumb {\r\n      max-height: 220px;\r\n      margin: 10px 0px;\r\n      padding: 0px;\r\n      display: block;\r\n          }\r\n\r\n    .related-post .post-list .item .post_title {\r\n      font-size: 14px;\r\n      color: #3f3f3f;\r\n      margin: 10px 0px;\r\n      padding: 0px;\r\n      display: block;\r\n      text-decoration: none;\r\n      margin-bottom: 0;\r\nfont-weight: 900;    }\r\n\r\n    .related-post .post-list .item .post_excerpt {\r\n      font-size: 13px;\r\n      color: #3f3f3f;\r\n      margin: 10px 0px;\r\n      padding: 0px;\r\n      line-height: 25px;\r\n      display: block;\r\n      text-decoration: none;\r\n      display: inline-grid;    }\r\n\r\n    @media only screen and (min-width: 1024px) {\r\n      .related-post .post-list .item {\r\n        width: 30%;\r\n      }\r\n    }\r\n\r\n    @media only screen and (min-width: 768px) and (max-width: 1023px) {\r\n      .related-post .post-list .item {\r\n        width: 90%;\r\n      }\r\n    }\r\n\r\n    @media only screen and (min-width: 0px) and (max-width: 767px) {\r\n      .related-post .post-list .item {\r\n        width: 90%;\r\n      }\r\n    }\r\n\r\n      <\/style>\r\n    <\/div>\r\n","protected":false},"excerpt":{"rendered":"<p>The recent release of Deno v1 is creating a buzz. Several proclaim Deno to bring about the end of Node.js.Is Deno faster than Node? However, at this moment, it sounds like an exaggeration or an over-emphatic statement. The comparisons between Deno vs node.js are bound to happen. After all, the creator of both Deno vs <a href=\"https:\/\/www.hiddenbrains.com\/blog\/application-modernization-strategy.html\" class=\"more-link\">&#8230;<span class=\"screen-reader-text\">  How Do Application Modernization Strategies Maximize Enterprise Profitability?<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":8616,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[111,1688],"tags":[380,497,498,820],"class_list":["post-8048","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-development","category-node-js","tag-deno-js","tag-front-end-framework","tag-front-end-technologies","tag-node-js"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/posts\/8048","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/comments?post=8048"}],"version-history":[{"count":9,"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/posts\/8048\/revisions"}],"predecessor-version":[{"id":40966,"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/posts\/8048\/revisions\/40966"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/media\/8616"}],"wp:attachment":[{"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/media?parent=8048"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/categories?post=8048"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hiddenbrains.com\/blog\/index.php\/wp-json\/wp\/v2\/tags?post=8048"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}