{"id":60205,"date":"2024-03-06T09:30:08","date_gmt":"2024-03-06T04:00:08","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=60205"},"modified":"2024-11-28T23:48:47","modified_gmt":"2024-11-28T18:18:47","slug":"node-version-using-nvmrc","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/","title":{"rendered":"Node Version Using .nvmrc"},"content":{"rendered":"<h3>Introduction<\/h3>\n<p>When we are working with multiple <a href=\"https:\/\/2thenew.online\/digital-engineering\/web-development\">Node.js and React.js projects<\/a>, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we will discuss how to create and use of .nvmrc file.<\/p>\n<p><strong><em>Before going to create a .nvmrc file, Please make sure nvm should be installed in the system<\/em><\/strong><\/p>\n<h2><strong>What is nvm<\/strong><\/h2>\n<p>NVM stands for Node Version Manager it&#8217;s an open-source version manager for Node.js. With the help of the nvm tool, we manage multiple installations of Node.js on a single machine, and it allows developers to switch between different versions of Node.js.<\/p>\n<h3>How to install nvm in Ubuntu<\/h3>\n<p><strong>Step 1:-<br \/>\n<\/strong>Please make sure the system is updated by running the below command<\/p>\n<pre><em><strong>sudo apt update<\/strong><\/em><\/pre>\n<p><strong>Step 2:-<\/strong><br \/>\nDownload and install NVM using curl<\/p>\n<pre><em><strong>curl -o- https:\/\/raw.githubusercontent.com\/nvm-sh\/nvm\/v0.35.3\/install.sh | bash<\/strong><\/em><\/pre>\n<p><strong>Step 3:-<\/strong><br \/>\nHere, we will check whether NVM is installed or not<\/p>\n<pre><em><strong>nvm --version<\/strong><\/em><\/pre>\n<p><strong>Step 4:-<\/strong><br \/>\nOnce Installation of the NVM is done, we can install a specific node version.<\/p>\n<pre><strong>nvm install &lt;nodeverion&gt;<\/strong><\/pre>\n<p><strong>Step 5:-<\/strong><br \/>\nBelow the command, we can all install the node Version.<\/p>\n<p><strong>Step 6:-<\/strong><br \/>\nHere, we can switch to the Node.js version based on the requirements.<\/p>\n<pre><strong>nvm use v16.02.0<\/strong><\/pre>\n<h3>What is a .nvmrc File?<\/h3>\n<p>The <em><strong>.nvmrc<\/strong><\/em> file is a simple text file that configuration file for <strong><em>nvm<\/em><\/strong> (Node Version Manager). It&#8217;s used to install and manage the node.js versions. The <em><strong>.nvmrc<\/strong><\/em> will be available on your project\u2019s root directory. Here, we can instruct nvm to switch to the specific Node.js version required for that project<\/p>\n<h4><strong>Creating and Using .nvmrc<\/strong><\/h4>\n<p><strong>Step 1:-<\/strong><\/p>\n<p>Go to the terminal and navigate to the root directory of your project; after that, create a new file, and the name will be .nvmrc<\/p>\n<p><strong>Step 2:-<\/strong><\/p>\n<p>Open the .nvmrc; whatever node version is required in your project, you can put it here and save it. eg:- here we have node 16.20.2 require in our project<\/p>\n<p><img decoding=\"async\" alt=\"Blog image\" src=\"\/blog\/wp-ttn-blog\/uploads\/2024\/02\/default-Node-version.png\" \/><\/p>\n<p>As you can see in the above pic, our default node version is <strong>v16.15.0,<\/strong> but the requirement is <strong>16.20.2<\/strong>. So here we will create a .<em><strong>nvmrc<\/strong><\/em> root directory of the project, and Inside the .nvmrc file, simply write <strong>16.20.2<\/strong>, After that, we will use the nvm use command.<\/p>\n<p><img decoding=\"async\" alt=\"Blog image\" src=\"\/blog\/wp-ttn-blog\/uploads\/2024\/02\/Screenshot-2024-02-02-at-11.51.04-PM.png\" \/><\/p>\n<p><img decoding=\"async\" alt=\"Blog image\" src=\"\/blog\/wp-ttn-blog\/uploads\/2024\/02\/check-node-version-install-or-not.png\" \/><\/p>\n<p>In the above image, you can see a specific node version if the node version is not available then; with the help of <em><strong>nvm install v16.20.2,<\/strong><\/em> we can install a specific node version<\/p>\n<p><img decoding=\"async\" alt=\"Blog image\" src=\"\/blog\/wp-ttn-blog\/uploads\/2024\/02\/Screenshot-2024-02-02-at-11.38.57-PM.png\" \/><\/p>\n<p>You can see in the above pic, Now with the help of the <em><strong>nvm use<\/strong><\/em> command, we can switch the specific node version<\/p>\n<h3>Conclusion<\/h3>\n<p>First, you have installed the nvm and learned to manage the node version with the .nvmrc file. The .nvmrc file is an effective and powerful tool that can manage the Node.js versions. With the help of the above steps, you and your team member can use the same node.js version<\/p>\n<p>Thanks for reading! Check out our <a href=\"https:\/\/2thenew.online\/blog\/\">other blog posts<\/a> for more insights.<\/p>\n<div class=\"ap-custom-wrapper\"><\/div><!--ap-custom-wrapper-->","protected":false},"excerpt":{"rendered":"<p>Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we [&hellip;]<\/p>\n","protected":false},"author":1709,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":3531,"footnotes":""},"categories":[1439,4684,1185,3038],"tags":[1186,1124,4857],"class_list":["post-60205","post","type-post","status-publish","format-standard","hentry","category-angular","category-mean-2","category-node-js-2","category-react-js","tag-angular-js","tag-node-js","tag-react-js"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Najmuddin Kaishar\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Node Version Using .nvmrc | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Node Version Using .nvmrc | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#article\",\"name\":\"Node Version Using .nvmrc | TO THE NEW Blog\",\"headline\":\"Node Version Using .nvmrc\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/najmuddin-kaishar\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2024\\\/02\\\/default-Node-version.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#articleImage\"},\"datePublished\":\"2024-03-06T09:30:08+05:30\",\"dateModified\":\"2024-11-28T23:48:47+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#webpage\"},\"articleSection\":\"AngularJS, MEAN, Node.js, React.js, Angular.js, node.js, React.js\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/#listItem\",\"name\":\"Node.js\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/#listItem\",\"position\":2,\"name\":\"Node.js\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#listItem\",\"name\":\"Node Version Using .nvmrc\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#listItem\",\"position\":3,\"name\":\"Node Version Using .nvmrc\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/node-js-2\\\/#listItem\",\"name\":\"Node.js\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/najmuddin-kaishar\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/najmuddin-kaishar\\\/\",\"name\":\"Najmuddin Kaishar\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/9970c912-046a-4835-b296-9061a139a1a1_2938-Najmuddin-Kaishar-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Najmuddin Kaishar\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/\",\"name\":\"Node Version Using .nvmrc | TO THE NEW Blog\",\"description\":\"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/node-version-using-nvmrc\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/najmuddin-kaishar\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/najmuddin-kaishar\\\/#author\"},\"datePublished\":\"2024-03-06T09:30:08+05:30\",\"dateModified\":\"2024-11-28T23:48:47+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Node Version Using .nvmrc | TO THE NEW Blog","description":"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we","canonical_url":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#article","name":"Node Version Using .nvmrc | TO THE NEW Blog","headline":"Node Version Using .nvmrc","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/najmuddin-kaishar\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2024\/02\/default-Node-version.png","@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#articleImage"},"datePublished":"2024-03-06T09:30:08+05:30","dateModified":"2024-11-28T23:48:47+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#webpage"},"articleSection":"AngularJS, MEAN, Node.js, React.js, Angular.js, node.js, React.js"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/node-js-2\/#listItem","name":"Node.js"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/node-js-2\/#listItem","position":2,"name":"Node.js","item":"https:\/\/2thenew.online\/blog\/category\/node-js-2\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#listItem","name":"Node Version Using .nvmrc"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#listItem","position":3,"name":"Node Version Using .nvmrc","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/node-js-2\/#listItem","name":"Node.js"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/najmuddin-kaishar\/#author","url":"https:\/\/2thenew.online\/blog\/author\/najmuddin-kaishar\/","name":"Najmuddin Kaishar","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/9970c912-046a-4835-b296-9061a139a1a1_2938-Najmuddin-Kaishar-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Najmuddin Kaishar"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#webpage","url":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/","name":"Node Version Using .nvmrc | TO THE NEW Blog","description":"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/najmuddin-kaishar\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/najmuddin-kaishar\/#author"},"datePublished":"2024-03-06T09:30:08+05:30","dateModified":"2024-11-28T23:48:47+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Node Version Using .nvmrc | TO THE NEW Blog","og:description":"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we","og:url":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Node Version Using .nvmrc | TO THE NEW Blog","twitter:description":"Introduction When we are working with multiple Node.js and React.js projects, managing different Node versions will be very challenging. There is a tool that is simple and powerful that saves us from version-related problems which is the .nvmrc file. This tool ensures that every React.js and node.js project uses the right node version. Here we","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"60205","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"limit_modified_date":false,"created":"2024-03-11 04:00:08","updated":"2024-11-28 18:18:47","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.online\/blog\/category\/node-js-2\/\" title=\"Node.js\">Node.js<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tNode Version Using .nvmrc\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Node.js","link":"https:\/\/2thenew.online\/blog\/category\/node-js-2\/"},{"label":"Node Version Using .nvmrc","link":"https:\/\/2thenew.online\/blog\/node-version-using-nvmrc\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/60205","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/1709"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=60205"}],"version-history":[{"count":3,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/60205\/revisions"}],"predecessor-version":[{"id":68845,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/60205\/revisions\/68845"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=60205"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=60205"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=60205"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}