{"id":29373,"date":"2021-02-25T20:25:48","date_gmt":"2021-02-26T04:25:48","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29373"},"modified":"2021-03-29T04:20:42","modified_gmt":"2021-03-29T11:20:42","slug":"npm-command-not-found","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/","title":{"rendered":"npm command not found"},"content":{"rendered":"\n<p><a href=\"https:\/\/www.npmjs.com\/get-npm\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Npm<\/a> (node package manager) helps JavaScript developers focus on the code instead of other \u2014 sometimes tedious and repetitive \u2014 details. Sometimes, however, you may come across npm errors such as <code>npm command not found<\/code>.<br><\/p>\n\n\n\n<p>We will work through how to resolve this error, so you can go back to enjoying all that npm has to offer.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the npm command not found Error?<\/h2>\n\n\n\n<p>The <code>Npm command not found<\/code> error can appear when you install or upgrade npm.<br><\/p>\n\n\n\n<p>On Windows, the cause of this error could be that a PATH or system variable is not correctly set. The error can also occur if you do not have npm or Node.js installed, have an outdated version, or have permission issues.<br><\/p>\n\n\n\n<p>Mac users seeing the npm command not found error could be due to missing files on your computer or a permissions issue.<br><\/p>\n\n\n\n<p>This article addresses those possible reasons. First we cover general causes related to installation, then go into Mac-specific solutions, before addressing how to fix a potential missing PATH variable on Windows.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Check if npm is Installed<\/h2>\n\n\n\n<p>The npm command requires npm to be installed on Windows. Npm uses Node.js, so it comes included in your Node.js installation package. To check if you have NOde.js installed type the following in the terminal:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>node -v<\/pre><\/div>\n\n\n\n<p>The <em>-v<\/em> stands for \u201cversion\u201d. Visit the <a href=\"https:\/\/www.npmjs.com\/get-npm\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">npm site<\/a> to verify if the version of npm you have installed is the latest version.<br><\/p>\n\n\n\n<p>You may have accidentally deleted your npm file or moved its location. This can happen more often than you think, especially if you change your PATH on your system.<br><\/p>\n\n\n\n<p>Check if npm is installed as well as node by typing the following in your terminal:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>npm -v<\/pre><\/div>\n\n\n\n<p>If you do have npm installed, it will output the version on your computer. To install npm, run the commands <a href=\"https:\/\/treehouse.github.io\/installation-guides\/mac\/node-mac.html\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">here for Mac<\/a> and <a href=\"https:\/\/phoenixnap.com\/kb\/install-node-js-npm-on-windows\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">here if you are using Windows<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Update npm<\/h2>\n\n\n\n<p>Even though npm comes with Node.js, they are separate, meaning you can have the latest of one and not of the other, since they may have different update release dates.<br><\/p>\n\n\n\n<p>If you have node (check with <em>$node -v<\/em>) and your node commands work, you may need to simply update npm. Updating npm can be done with one line:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>npm install npm@latest -g<\/pre><\/div>\n\n\n\n<p>If you have trouble with this command, you may have to prefix it with <code>sudo<\/code>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>sudo npm install -g npm@latest<\/pre><\/div>\n\n\n\n<p>If you are working on your code in an editor, make sure to restart it after you\u2019re done installing or updating.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Windows Solution<\/h2>\n\n\n\n<p>You may still see <code>npm command not found<\/code> because C:\\Program Files\\nodejs could be missing from your PATH environment variable.<br><\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Open global search \ud83d\udd0e and look up \u201cEnvironment Variables\u201d.<\/li><li>Choose \u201cEdit system environment variables\u201d.<\/li><li>Click \u201cEnvironment Variables\u201d in the \u201cAdvanced\u201d tab.<\/li><li>In the \u201cSystem Variables\u201d box, search for Path and edit it to include the path C:\\Program Files\\nodejs. If you don&#8217;t see it there click \u201cNew\u201d then add this path. (Note: Depending on your version you may just need to edit and append this path to what\u2019s there by prefixing it with a semicolon. You\u2019ll see the other paths there are also separated by semicolons).<\/li><\/ol>\n\n\n\n<p><a href=\"https:\/\/docs.npmjs.com\/try-the-latest-stable-version-of-npm#upgrading-on-windows\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Here is some documentation<\/a> on the Windows settings and environment variables relating to npm in case you are curious and want to read more about the settings.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Permissions Solution<\/h2>\n\n\n\n<p>For permission issues, prefix your terminal commands with <code>sudo<\/code> to bypass issues. Permission issues can be the cause of program files not being able to be properly downloaded. You can also try the following terminal commands as a last option if all others have not worked out for you, though this may not be an option for you if you are on a shared or work computer. For Mac and Linux users:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>sudo chown -R $(whoami):admin \/usr\/local\/lib\/node_modules\/<\/pre><\/div>\n\n\n\n<p>This command adjusts the permissions of the <a href=\"https:\/\/nodejs.dev\/learn\/npm-global-or-local-packages\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">npm directory<\/a>. <code>Chown<\/code> means change owner, <code>-R<\/code> means recursively (throughout the files therein), \u201cwhoami\u201d grabs your user account name, and the last line is where your node package files are. After running the above command,&nbsp; try the npm command you were attempting again.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>After implementing any changes we went through to troubleshoot the \u201ccommand not found\u201d error, be sure to restart any open code editor or terminal\/command prompt. To recap, the suggested solutions we discussed were:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>updating npm<\/li><li>checking if node is up to date<\/li><li>fixing the PATH in Windows<\/li><li>changing permissions for node&nbsp;<\/li><\/ul>\n\n\n\n<p><a href=\"https:\/\/www.whitesourcesoftware.com\/free-developer-tools\/blog\/reinstall-npm-node-js\/\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">This article<\/a> has instructional links on how to uninstall and install npm for Windows or Mac. If you can do this, it may clear any blockers npm is having.<br><\/p>\n\n\n\n<p>If you want to dive into npm, read <a href=\"https:\/\/careerkarma.com\/blog\/how-to-learn-npm\/\">this article on npm<\/a> which includes curated, proven resources for learning more.<\/p>\n","protected":false},"excerpt":{"rendered":"Npm (node package manager) helps JavaScript developers focus on the code instead of other \u2014 sometimes tedious and repetitive \u2014 details. Sometimes, however, you may come across npm errors such as npm command not found. We will work through how to resolve this error, so you can go back to enjoying all that npm has&hellip;","protected":false},"author":114,"featured_media":11907,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[11933],"tags":[],"class_list":{"0":"post-29373","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-javascript"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"JavaScript","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>npm command not found | Career Karma<\/title>\n<meta name=\"description\" content=\"Want to fix the npm command not found error? Read this guide on troubleshooting and adressing the npm command not found error message.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"npm command not found\" \/>\n<meta property=\"og:description\" content=\"Want to fix the npm command not found error? Read this guide on troubleshooting and adressing the npm command not found error message.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-26T04:25:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-29T11:20:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"667\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Yessenia Mata\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yessenia Mata\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/\"},\"author\":{\"name\":\"Yessenia Mata\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3\"},\"headline\":\"npm command not found\",\"datePublished\":\"2021-02-26T04:25:48+00:00\",\"dateModified\":\"2021-03-29T11:20:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/\"},\"wordCount\":766,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg\",\"articleSection\":[\"JavaScript\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/\",\"name\":\"npm command not found | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg\",\"datePublished\":\"2021-02-26T04:25:48+00:00\",\"dateModified\":\"2021-03-29T11:20:42+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3\"},\"description\":\"Want to fix the npm command not found error? Read this guide on troubleshooting and adressing the npm command not found error message.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg\",\"width\":1000,\"height\":667},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"JavaScript\",\"item\":\"https:\/\/careerkarma.com\/blog\/javascript\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"npm command not found\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\",\"url\":\"https:\/\/careerkarma.com\/blog\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/careerkarma.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3\",\"name\":\"Yessenia Mata\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg\",\"caption\":\"Yessenia Mata\"},\"description\":\"Yessenia is a technical writer at Career Karma. In addition to contributing to Career Karma as a writer, Yessenia currently works in IT in the San Francisco Bay Area. She has experience with programming languages including Java, Python, HTML, CSS, and JavaScript and is double majoring in CNIT and Computer Science.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/yessenia-m\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"npm command not found | Career Karma","description":"Want to fix the npm command not found error? Read this guide on troubleshooting and adressing the npm command not found error message.","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:\/\/careerkarma.com\/blog\/npm-command-not-found\/","og_locale":"en_US","og_type":"article","og_title":"npm command not found","og_description":"Want to fix the npm command not found error? Read this guide on troubleshooting and adressing the npm command not found error message.","og_url":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-02-26T04:25:48+00:00","article_modified_time":"2021-03-29T11:20:42+00:00","og_image":[{"width":1000,"height":667,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","type":"image\/jpeg"}],"author":"Yessenia Mata","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Yessenia Mata","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/"},"author":{"name":"Yessenia Mata","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3"},"headline":"npm command not found","datePublished":"2021-02-26T04:25:48+00:00","dateModified":"2021-03-29T11:20:42+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/"},"wordCount":766,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","articleSection":["JavaScript"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/","url":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/","name":"npm command not found | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","datePublished":"2021-02-26T04:25:48+00:00","dateModified":"2021-03-29T11:20:42+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3"},"description":"Want to fix the npm command not found error? Read this guide on troubleshooting and adressing the npm command not found error message.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/npm-command-not-found\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/JavaScript.jpg","width":1000,"height":667},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/npm-command-not-found\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"JavaScript","item":"https:\/\/careerkarma.com\/blog\/javascript\/"},{"@type":"ListItem","position":3,"name":"npm command not found"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/616533dc6ff37b9111aad55631595ec3","name":"Yessenia Mata","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/TD8SYPRGU-U01LTPHLWG2-ef37ec165b60-512-150x150.jpg","caption":"Yessenia Mata"},"description":"Yessenia is a technical writer at Career Karma. In addition to contributing to Career Karma as a writer, Yessenia currently works in IT in the San Francisco Bay Area. She has experience with programming languages including Java, Python, HTML, CSS, and JavaScript and is double majoring in CNIT and Computer Science.","url":"https:\/\/careerkarma.com\/blog\/author\/yessenia-m\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29373","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/114"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=29373"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29373\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/11907"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29373"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29373"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29373"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}