Skip to content

Instantly share code, notes, and snippets.

@geek
Created October 2, 2014 16:03
Show Gist options
  • Save geek/21f171388cdac64085e4 to your computer and use it in GitHub Desktop.
Save geek/21f171388cdac64085e4 to your computer and use it in GitHub Desktop.
> process.platform
'darwin'
> process.platform = 'huh'
'huh'
> process.platform
'darwin'
> process.version
'v0.11.13'


$ nvm use 0.10.31
Now using node v0.10.31
$ node
> process.platform
'darwin'
> process.platform = 'huh'
'huh'
> process.platform
'huh'
> 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment