homedir

Platform agnostic user home directory path resolution for Node.js.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
homedir
1010.6.09 years ago10 years agoMinified + gzip package size for homedir in KB

Readme

homedir
Build Status NPM version NPM downloads LICENSE
Platform agnostic user home directory path resolution (i.e. man 5 passwd) for Node.js.
The user's home directory. This is the full path name where the user will be placed on login.

OSX

homedir();
#=> /Users/wilmoore

homedir('Guest');
#=> /Users/Guest

Windows

homedir();
#=> C:\Users\wilmoore

homedir('Public');
#=> C:\Users\Public

Linux

homedir();
#=> /home/wilmoore

homedir('guest');
#=> /home/guest

Installation

npm install homedir --save

Alternatives

License

MIT