{"id":13353,"date":"2024-02-26T01:32:15","date_gmt":"2024-02-25T22:32:15","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13353"},"modified":"2024-02-26T01:32:16","modified_gmt":"2024-02-25T22:32:16","slug":"how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/","title":{"rendered":"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu"},"content":{"rendered":"\n

Node.js is a popular runtime environment that allows you to run JavaScript<\/a> on the server-side. While it’s an essential tool for many developers, there may come a time when you need to uninstall it from your Ubuntu system. Whether you’re upgrading to a new version, troubleshooting issues, or simply cleaning up your system, this guide will walk you through the steps to completely uninstall Node.js, NPM (Node Package Manager), and Node from your Ubuntu<\/a> machine.<\/p>\n\n\n\n

Step 1: Check the Installed Version<\/strong><\/h2>\n\n\n\n

Before you start the uninstallation process, it’s a good idea to check the currently installed versions of Node.js<\/a> and NPM. You can do this by opening your terminal and running the following commands:<\/p>\n\n\n\n

To check the Node.js version:<\/p>\n\n\n\n

$ node -v<\/code><\/pre>\n\n\n\n

To check the NPM version:<\/p>\n\n\n\n

$ npm -v<\/code><\/pre>\n\n\n\n

This step helps you verify which versions you have installed so you can ensure they are removed correctly.<\/p>\n\n\n\n

Step 2: Uninstall Node.js and NPM<\/strong><\/h2>\n\n\n\n

To uninstall Node.js and NPM from your Ubuntu system, you can use the package manager apt<\/code>. Here are the commands to remove them:<\/p>\n\n\n\n

    \n
  1. Remove Node.js: sudo apt-get remove nodejs<\/code><\/li>\n\n\n\n
  2. Remove NPM: sudo apt-get remove npm<\/code><\/li>\n\n\n\n
  3. Additionally, you may want to remove any residual configuration files for Node.js and NPM: sudo apt-get purge nodejs npm<\/code><\/li>\n<\/ol>\n\n\n\n

    Step 3: Verify Uninstallation<\/strong><\/h2>\n\n\n\n

    After running the uninstallation commands, it’s a good practice to verify that Node.js and NPM have been successfully removed. To check this, run the following commands:<\/p>\n\n\n\n

    $ node -v npm -v<\/code><\/pre>\n\n\n\n

    If the commands return an error or indicate that the program is not installed, it means Node.js and NPM have been successfully uninstalled from your system.<\/p>\n\n\n\n

    Step 4: Remove Node.js and NPM Global Packages<\/strong><\/h2>\n\n\n\n

    Uninstalling Node.js and NPM from your system does not remove global Node packages you may have installed. To remove these global packages, you can use the npm list -g --depth=0<\/code> command to list them, and then use npm uninstall -g<\/code> to uninstall them one by one.<\/p>\n\n\n\n

    For example, to list your global packages:<\/p>\n\n\n\n

    $ npm list -g --depth=0<\/code><\/pre>\n\n\n\n

    To uninstall a global package (replace package_name<\/code> with the actual package name):<\/p>\n\n\n\n

    $ npm uninstall -g package_name<\/code><\/pre>\n\n\n\n
    \n

    Repeat the uninstallation process for each global package you want to remove.<\/p>\n<\/div>\n\n\n\n

    Step 5: Remove Node.js and NPM Files and Directories<\/strong><\/h2>\n\n\n\n

    After uninstalling Node.js and NPM, there may still be residual files and directories left on your system. To remove them, use the following commands:<\/p>\n\n\n\n

      \n
    1. Delete the \/usr\/local\/bin\/node<\/code> binary: sudo rm -rf \/usr\/local\/bin\/node<\/code><\/li>\n\n\n\n
    2. Remove any related files in the \/usr\/local\/lib<\/code> directory: sudo rm -rf \/usr\/local\/lib\/node*<\/code><\/li>\n\n\n\n
    3. Delete the \/usr\/local\/bin\/npm<\/code> binary: sudo rm -rf \/usr\/local\/bin\/npm<\/code><\/li>\n\n\n\n
    4. Remove any related files in the \/usr\/local\/lib<\/code> directory: sudo rm -rf \/usr\/local\/lib\/npm*<\/code><\/li>\n<\/ol>\n\n\n\n

      Step 6: Clear the Cache<\/strong><\/h2>\n\n\n\n

      Node.js and NPM may leave behind cached files that you can remove. To do this, use the following command:<\/p>\n\n\n\n

      $ sudo npm cache clean -f<\/code><\/pre>\n\n\n\n

      Conclusion<\/strong><\/h2>\n\n\n\n

      Uninstalling Node.js, NPM, and Node from your Ubuntu system can be necessary for various reasons, and it’s crucial to do it correctly to avoid any issues. By following these steps, you should be able to completely remove Node.js and NPM from your machine, including any residual files and global packages. This ensures a clean uninstallation, allowing you to install or upgrade Node.js with a fresh start when needed.<\/p>\n","protected":false},"excerpt":{"rendered":"

      Node.js is a popular runtime environment that allows you to run JavaScript on the server-side. While it’s an essential tool for many developers, there may come a time when you…<\/p>\n","protected":false},"author":1,"featured_media":13766,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,16,18],"tags":[193,328,354,404,424,433,449,531,544,573,591,598,636,638],"yoast_head":"\nHow to Completely Uninstall Node.js, NPM, and Node in Ubuntu<\/title>\n<meta name=\"description\" content=\"Node.js allows you to run JavaScript server-side. This is how to completely uninstall Node.js, NPM (Node Package Manager) and Node on Ubuntu.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu\" \/>\n<meta property=\"og:description\" content=\"Node.js allows you to run JavaScript server-side. This is how to completely uninstall Node.js, NPM (Node Package Manager) and Node on Ubuntu.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-02-25T22:32:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-25T22:32:16+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu\",\"datePublished\":\"2024-02-25T22:32:15+00:00\",\"dateModified\":\"2024-02-25T22:32:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/\"},\"wordCount\":495,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg\",\"keywords\":[\"DevOps\",\"JavaScript\",\"Linux\",\"Node.JS\",\"Open Source\",\"Optimization\",\"Performance\",\"Server\",\"Software development\",\"Systems Administration\",\"Tools\",\"Ubuntu\",\"Web Applications\",\"Web Development\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/\",\"name\":\"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg\",\"datePublished\":\"2024-02-25T22:32:15+00:00\",\"dateModified\":\"2024-02-25T22:32:16+00:00\",\"description\":\"Node.js allows you to run JavaScript server-side. This is how to completely uninstall Node.js, NPM (Node Package Manager) and Node on Ubuntu.\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Uninstall Node.js\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/twitter.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu","description":"Node.js allows you to run JavaScript server-side. This is how to completely uninstall Node.js, NPM (Node Package Manager) and Node on Ubuntu.","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":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu","og_description":"Node.js allows you to run JavaScript server-side. This is how to completely uninstall Node.js, NPM (Node Package Manager) and Node on Ubuntu.","og_url":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-02-25T22:32:15+00:00","article_modified_time":"2024-02-25T22:32:16+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu","datePublished":"2024-02-25T22:32:15+00:00","dateModified":"2024-02-25T22:32:16+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/"},"wordCount":495,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg","keywords":["DevOps","JavaScript","Linux","Node.JS","Open Source","Optimization","Performance","Server","Software development","Systems Administration","Tools","Ubuntu","Web Applications","Web Development"],"articleSection":["Articles","Guides","How To","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/","url":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/","name":"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg","datePublished":"2024-02-25T22:32:15+00:00","dateModified":"2024-02-25T22:32:16+00:00","description":"Node.js allows you to run JavaScript server-side. This is how to completely uninstall Node.js, NPM (Node Package Manager) and Node on Ubuntu.","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Uninstall-Node.js.jpg","width":1280,"height":680,"caption":"Uninstall Node.js"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-completely-uninstall-node-js-npm-and-node-in-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Completely Uninstall Node.js, NPM, and Node in Ubuntu"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/twitter.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13353"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13353"}],"version-history":[{"count":1,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13353\/revisions"}],"predecessor-version":[{"id":13767,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13353\/revisions\/13767"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13766"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13353"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13353"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13353"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}