Nvmrc In Project Directory¶
15 January 2020 ยท learn++
Want to manage NVM correctly on a project basis?
.nvmrc in Project Directory¶
You can put your .nvmrc file into your project directory and nvm use will load the correct node version for you. If your shell is setup correctly, it should automatically load the file if you cd $project_dir into it:
node -v > .nvmrc
creates the file for you.