A nodenv plugin to activate Node version from .nvmrc.
This is a plugin for nodenv
that detects the node version based on the current tree's .nvmrc. .node-version files still take precedence.
When .nvmrc is configured with a range this plugin chooses the greatest installed version matching the range or exits with an error if none match.
$ git clone https://github.com/nodenv/nodenv-nvmrc.git $(nodenv root)/plugins/nodenv-nvmrcMac OS X users can install many nodenv plugins with Homebrew.
This is the recommended method of installation if you installed nodenv with Homebrew.
$ brew tap nodenv/nodenv
$ brew install nodenv-nvmrcOnce you've installed the plugin you can verify that it's working by cding into a project that has a .nvmrc file and does not have a .node-version file. From anywhere in the project's tree, run nodenv which node.
Due to the limitaion of nodenv's plugin system, some commands were not reading the version from .nvmrc.
nodenv installwithout version is not able to install new Node version specified in.nvmrc.nodenv localwithout version is not able to retrieve the version specified in.nvmrc
To run tests, install bats and nodenv, then run bats test in the base directory of this plugin
This project is heavily inspired by nodenv-package-json-engine[1].
Shell semver range support provided by sh-semver.