Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 806 Bytes

README.md

File metadata and controls

43 lines (27 loc) · 806 Bytes

n.zsh

a zsh plugin for auto-switching node versions based on project environment using n

installation

prerequisites

  • jq
brew install jq

antigen

antigen bundle gretzky/n.zsh

zplugin

zplugin load gretzky/n.zsh

zgen

zgen load gretzky/n.zsh

oh-my-zsh

  • cd ~/.oh-my-zsh/custom/plugins
  • git clone https://github.com/gretzky/n.zsh
  • add n.zsh to plugins=() in your .zshrc

usage

on its own, n.zsh will check for a package.json in the current directory. if it exists, it checks and reads the value of the node engine, and then switches to that version using n.

if the node engine reads 'greater than', n switches to node stable. otherwise, it switches to the specified version.