We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
homedir
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
Return the current user's home directory.
bash
npm install @stdlib/os-homedir
javascript
var homedir = require( '@stdlib/os-homedir' );
#### homedir()
Returns the current user's home
directory.
javascript
var home = homedir();
// e.g., returns '/Users/<username>'
If unable to locate a home
directory, the function returns null
.
home
directory. Note that this approach has security vulnerabilities, as attackers can tamper with [environment variables][environment-variables].
javascript
var homedir = require( '@stdlib/os-homedir' );
console.log( homedir() );
@stdlib/os-homedir-cli
][@stdlib/os-homedir-cli]: CLI package for use as a command-line utility.
- [@stdlib/os-configdir
][@stdlib/os/configdir]: return a directory for user-specific configuration files.
- [@stdlib/os-tmpdir
][@stdlib/os/tmpdir]: return the directory for storing temporary files.