{"id":13370,"date":"2024-02-26T01:34:18","date_gmt":"2024-02-25T22:34:18","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13370"},"modified":"2024-02-26T01:34:19","modified_gmt":"2024-02-25T22:34:19","slug":"how-to-install-node-js-on-ubuntu-22-04","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/","title":{"rendered":"How to Install Node.js on Ubuntu 22.04"},"content":{"rendered":"\n

Node.js is a powerful runtime environment that allows you to run JavaScript<\/a> on the server side, making it an essential tool for web developers. If you’re using Ubuntu 22.04 and want to harness the capabilities of Node.js for your projects, this guide will walk you through the installation process step by step.<\/p>\n\n\n\n

Prerequisites<\/h2>\n\n\n\n

Before you start installing Node.js<\/a> on your Ubuntu 22.04 system, make sure you have the following:<\/p>\n\n\n\n

    \n
  1. An Ubuntu 22.04 Installation<\/strong>: Ensure that you are running Ubuntu 22.04 or a compatible version.<\/li>\n\n\n\n
  2. A Terminal<\/strong>: You will need a terminal to run commands.<\/li>\n\n\n\n
  3. Superuser Privileges<\/strong>: You should have superuser privileges or access to a user account with sudo rights to install software.<\/li>\n<\/ol>\n\n\n\n

    Method 1: Installing Node.js using the Official Ubuntu Repositories<\/h2>\n\n\n\n

    The easiest way to install Node.js is by using the official Ubuntu<\/a> repositories. This method provides a stable version, but it may not always be the latest. To install Node.js this way, follow these steps:<\/p>\n\n\n\n

    Step 1: Update your package repository<\/strong>.<\/p>\n\n\n\n

    $ sudo apt update<\/code><\/pre>\n\n\n\n

    This command will update the package repository to ensure that you have the latest information on available packages.<\/p>\n\n\n\n

    Step 2: Install Node.js and npm<\/strong>.<\/p>\n\n\n\n

    You can install Node.js and npm using the following command:<\/p>\n\n\n\n

    $ sudo apt install nodejs npm<\/code><\/pre>\n\n\n\n

    This command will install both Node.js and the Node Package Manager (npm).<\/p>\n\n\n\n

    Step 3: Verify the installation<\/strong>.<\/p>\n\n\n\n

    To check if Node.js and npm have been installed correctly, run the following commands:<\/p>\n\n\n\n

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

    You should see the installed versions of Node.js and npm, confirming that the installation was successful.<\/p>\n\n\n\n

    Method 2: Installing Node.js using NodeSource<\/h2>\n\n\n\n

    NodeSource provides more up-to-date Node.js versions and offers flexibility in selecting specific versions. Here’s how to install Node.js using NodeSource:<\/p>\n\n\n\n

    Step 1: Install the required software<\/strong>.<\/p>\n\n\n\n

    Before adding the NodeSource <\/strong>repository, make sure you have the necessary software installed. This will allow you to add and update repositories via HTTPS:<\/p>\n\n\n\n

    $ sudo apt-get update\n$ sudo apt install -y ca-certificates curl gnupg software-properties-common\n$ sudo mkdir -p \/etc\/apt\/keyrings\n$ curl -fsSL https:\/\/deb.nodesource.com\/gpgkey\/nodesource-repo.gpg.key | sudo gpg --dearmor -o \/etc\/apt\/keyrings\/nodesource.gpg<\/code><\/pre>\n\n\n\n

    Step 2: Create deb repository<\/strong>.<\/p>\n\n\n\n

    NodeSource <\/strong>maintains a repository for Node.js. To add it to your system, run the following command, replacing 16.x<\/code> with your desired Node.js version:<\/p>\n\n\n\n

    $ NODE_MAJOR=20\n$ echo "deb [signed-by=\/etc\/apt\/keyrings\/nodesource.gpg] https:\/\/deb.nodesource.com\/node_$NODE_MAJOR.x nodistro main" | sudo tee \/etc\/apt\/sources.list.d\/nodesource.list<\/code><\/pre>\n\n\n\n

    Optional<\/strong><\/em>: NODE_MAJOR<\/code> can be changed depending on the version you need.<\/p>\n\n\n\n

    NODE_MAJOR=16\nNODE_MAJOR=18\nNODE_MAJOR=20\nNODE_MAJOR=21<\/code><\/pre>\n\n\n\n

    Step 3: Install Node.js and npm<\/strong>.<\/p>\n\n\n\n

    After adding the NodeSource repository, install Node.js and npm with the following command:<\/p>\n\n\n\n

    $ sudo apt-get update\n$ sudo apt-get install nodejs -y<\/code><\/pre>\n\n\n\n

    Step 4: Verify the installation<\/strong>.<\/p>\n\n\n\n

    To confirm the successful installation of Node.js and npm, run:<\/p>\n\n\n\n

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

    You should see the installed versions displayed on the screen.<\/p>\n\n\n\n

    Uninstall nodejs<\/code> Ubuntu & Debian packages<\/h3>\n\n\n\n

    To completely remove Node.js installed from the deb.nodesource.com<\/a> package methods above:<\/p>\n\n\n\n

    $ sudo apt-get purge nodejs &&\\\n$ sudo rm -r \/etc\/apt\/sources.list.d\/nodesource.list &&\\\n$ sudo rm -r \/etc\/apt\/keyrings\/nodesource.gpg<\/code><\/pre>\n\n\n\n

    Optional: Managing Node.js Versions with NVM<\/h2>\n\n\n\n

    If you want to manage multiple Node.js versions on your system, you can use NVM (Node Version Manager). Here’s how to install and use NVM:<\/p>\n\n\n\n

    Step 1: Install NVM<\/strong>.<\/p>\n\n\n\n

    Download and install NVM by running the following command:<\/p>\n\n\n\n

    $ curl -o- https:\/\/raw.githubusercontent.com\/nvm-sh\/nvm\/v0.39.5\/install.sh | bash<\/code><\/pre>\n\n\n\n

    Step 2: Load NVM<\/strong>.<\/p>\n\n\n\n

    Close and reopen your terminal or run the following command to load NVM:<\/p>\n\n\n\n

    $ source ~\/.nvm\/nvm.sh<\/code><\/pre>\n\n\n\n

    Step 3: Install Node.js using NVM<\/strong>.<\/p>\n\n\n\n

    Now you can install and manage different Node.js versions with NVM. For instance, to install Node.js version 20, use:<\/p>\n\n\n\n

    $ nvm install 20<\/code><\/pre>\n\n\n\n

    You can switch between installed Node.js versions with:<\/p>\n\n\n\n

    $ nvm use 20<\/code><\/pre>\n\n\n\n

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

    You’ve successfully installed Node.js on your Ubuntu 22.04 system using both the official repositories and NodeSource. With Node.js and npm installed, you’re equipped to build and run JavaScript applications on your server. Whether you’re a web developer or a system administrator, Ubuntu 22.04 is a fantastic platform for harnessing the power of Node.js for your projects. Happy coding!<\/p>\n\n\n\n

    http:\/\/local.brightwhiz\/how-to-install-node-js-18-lts-on-centos-7-8-or-fedora-38-34\/<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"

    Node.js is a powerful runtime environment that allows you to run JavaScript on the server side, making it an essential tool for web developers. If you’re using Ubuntu 22.04 and…<\/p>\n","protected":false},"author":1,"featured_media":13786,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,25,16,18],"tags":[328,350,354,404,424,433,449,544,591,598,635,636,638],"yoast_head":"\nHow to Install Node.js on Ubuntu 22.04 Linux Systems<\/title>\n<meta name=\"description\" content=\"This is the comprehensive guide showing you how to properly install Node.js on Ubuntu 22.04 Linux Systems and other Linux distros\" \/>\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-install-node-js-on-ubuntu-22-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Node.js on Ubuntu 22.04 Linux Systems\" \/>\n<meta property=\"og:description\" content=\"This is the comprehensive guide showing you how to properly install Node.js on Ubuntu 22.04 Linux Systems and other Linux distros\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/\" \/>\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:34:18+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-02-25T22:34:19+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.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-install-node-js-on-ubuntu-22-04\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How to Install Node.js on Ubuntu 22.04\",\"datePublished\":\"2024-02-25T22:34:18+00:00\",\"dateModified\":\"2024-02-25T22:34:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/\"},\"wordCount\":587,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg\",\"keywords\":[\"JavaScript\",\"Libraries\",\"Linux\",\"Node.JS\",\"Open Source\",\"Optimization\",\"Performance\",\"Software development\",\"Tools\",\"Ubuntu\",\"Web\",\"Web Applications\",\"Web Development\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Libraries\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/\",\"name\":\"How to Install Node.js on Ubuntu 22.04 Linux Systems\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg\",\"datePublished\":\"2024-02-25T22:34:18+00:00\",\"dateModified\":\"2024-02-25T22:34:19+00:00\",\"description\":\"This is the comprehensive guide showing you how to properly install Node.js on Ubuntu 22.04 Linux Systems and other Linux distros\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install Node.js Ubuntu 22.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Node.js on Ubuntu 22.04\"}]},{\"@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 Install Node.js on Ubuntu 22.04 Linux Systems","description":"This is the comprehensive guide showing you how to properly install Node.js on Ubuntu 22.04 Linux Systems and other Linux distros","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-install-node-js-on-ubuntu-22-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Node.js on Ubuntu 22.04 Linux Systems","og_description":"This is the comprehensive guide showing you how to properly install Node.js on Ubuntu 22.04 Linux Systems and other Linux distros","og_url":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-02-25T22:34:18+00:00","article_modified_time":"2024-02-25T22:34:19+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.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-install-node-js-on-ubuntu-22-04\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How to Install Node.js on Ubuntu 22.04","datePublished":"2024-02-25T22:34:18+00:00","dateModified":"2024-02-25T22:34:19+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/"},"wordCount":587,"commentCount":0,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg","keywords":["JavaScript","Libraries","Linux","Node.JS","Open Source","Optimization","Performance","Software development","Tools","Ubuntu","Web","Web Applications","Web Development"],"articleSection":["Articles","Guides","How To","Libraries","Technology","Tools"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/","url":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/","name":"How to Install Node.js on Ubuntu 22.04 Linux Systems","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg","datePublished":"2024-02-25T22:34:18+00:00","dateModified":"2024-02-25T22:34:19+00:00","description":"This is the comprehensive guide showing you how to properly install Node.js on Ubuntu 22.04 Linux Systems and other Linux distros","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/02\/Install-Node.js-Ubuntu-22.04.jpg","width":1280,"height":680,"caption":"Install Node.js Ubuntu 22.04"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-node-js-on-ubuntu-22-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How to Install Node.js on Ubuntu 22.04"}]},{"@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\/13370"}],"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=13370"}],"version-history":[{"count":1,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13370\/revisions"}],"predecessor-version":[{"id":13777,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13370\/revisions\/13777"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13786"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13370"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13370"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13370"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}