0.0
The project is in a healthy, maintained state
A tomo plugin to manage node and yarn via nvm
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 1.0
 Project Readme

tomo-plugin-nvm

Gem Version Gem Downloads GitHub Workflow Status Code Climate maintainability

This is a tomo plugin to manage node and yarn via nvm (instead of using the nodenv tasks that are built into tomo). The nvm:install task is a drop-in replacement for tomo’s nodenv:install task.


  • Installation
  • Settings
  • Tasks
  • Support
  • License
  • Code of conduct
  • Contribution guide

Installation

Run:

$ gem install tomo-plugin-nvm

Or add it to your Gemfile:

gem "tomo-plugin-nvm"

Then add the following to .tomo/config.rb:

plugin "nvm"

set nvm_node_version: "10.16.0" # required
set nvm_yarn_version: "1.16.0"  # optional

setup do
  # Place this task before any steps that require node/yarn
  run "nvm:install"
end

Settings

Name Purpose Default
bashrc_path Location of the deploy user’s .bashrc file ".bashrc"
nvm_version Version of nvm to install "0.34.0"
nvm_node_version Version of node to install nil
nvm_yarn_version Version of yarn to install nil

Tasks

nvm:install

Installs nvm, uses nvm to install node, and makes the desired version of node the global default version for the deploy user. During installation, the user’s bashrc file is modified so that nvm is automatically loaded for interactive and non-interactive shells.

You must supply a value for the nvm_node_version setting for this task to work. If the nvm_yarn_version setting is specified, yarn is also installed globally via npm. This setting is optional.

nvm:install is intended for use as a setup task.

Support

If you want to report a bug, or have ideas, feedback or questions about the gem, let me know via GitHub issues and I will do my best to provide a helpful answer. Happy hacking!

License

The gem is available as open source under the terms of the MIT License.

Code of conduct

Everyone interacting in this project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

Contribution guide

Pull requests are welcome!