We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f6ead4 commit 66bcd86Copy full SHA for 66bcd86
.aliases
@@ -139,3 +139,7 @@ alias afk="/System/Library/CoreServices/Menu\ Extras/User.menu/Contents/Resource
139
140
# Reload the shell (i.e. invoke as a login shell)
141
alias reload="exec $SHELL -l"
142
+
143
+# Easily switch between `io.js` and `Node.js`
144
+alias use-iojs="brew unlink node && brew link --force iojs"
145
+alias use-node="brew unlink iojs && brew link --force node"
brew.sh
@@ -98,5 +98,8 @@ brew install zopfli
98
# installation method.
99
brew install node
100
101
+# Install io.js
102
+brew install iojs
103
104
# Remove outdated versions from the cellar.
105
brew cleanup
0 commit comments