Bakhtina Sofya b84cb877be 1st comm | 2 týždňov pred | |
---|---|---|
.. | ||
LICENSE | 2 týždňov pred | |
README.md | 2 týždňov pred | |
index.js | 2 týždňov pred | |
package.json | 2 týždňov pred | |
polyfill.js | 2 týždňov pred |
Node.js os.homedir polyfill for older versions of node.js.
Please consider following this project's author, Brian Woodward, and consider starring the project to show your :heart: and support.
Install with npm:
$ npm install --save homedir-polyfill
var homedir = require('homedir-polyfill');
console.log(homedir());
//=> /Users/doowb
This library is a polyfill for the node.js os.homedir method found in modern versions of node.js.
This implementation tries to follow the implementation found in libuv
by finding the current user using the process.geteuid()
method and the /etc/passwd
file. This should usually work in a linux environment, but will also fallback to looking at user specific environment variables to build the user's home directory if neccessary.
Since /etc/passwd
is not available on windows platforms, this implementation will use environment variables to find the home directory.
In modern versions of node.js, os.homedir is used.
You might also be interested in these projects:
parse-passwd: Parse a passwd file into a list of users. | homepage
| Commits | Contributor |
| --- | --- |
| 19 | doowb |
| 2 | martinheidegger |
Brian Woodward
Copyright © 2016 - 2019, Brian Woodward. Released under the MIT License.
This file was generated by verb-generate-readme, v0.8.0, on February 21, 2019.