Skip to content

Instantly share code, notes, and snippets.

@joachimkainz
Created May 19, 2012 22:18
Show Gist options
  • Select an option

  • Save joachimkainz/2732566 to your computer and use it in GitHub Desktop.

Select an option

Save joachimkainz/2732566 to your computer and use it in GitHub Desktop.
Home directory on node
function getHome() {
return process.env[(process.platform == 'win32') ? 'USERPROFILE' : 'HOME'];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment