Forrest logo
back to context overview

nvm

List of commands for nvm:

  • nvm:tldr:3f58e nvm: Launch the REPL of a specific version of Node.js.
    $ nvm run ${node_version} --version
    try on your machine
    explain this command
  • nvm:tldr:d01e1 nvm: Execute a script in a specific version of Node.js.
    $ nvm exec ${node_version} node ${app-js}
    try on your machine
    explain this command
  • nvm:tldr:d503c nvm: Set the default Node.js version.
    $ nvm alias default ${node_version}
    try on your machine
    explain this command
  • nvm:tldr:fc9e8 nvm: List all remote Node.js versions.
    $ nvm ls-remote
    try on your machine
    explain this command
back to context overview