Return the current working directory.
var cwd = require( '@stdlib/process/cwd' );
Returns the current working directory.
var dir = cwd();
// e.g., returns '/path/to/current/working/directory'
- In browser environments, the current working directory is always equal to
'/'
.
var PATH_SEP = require( '@stdlib/constants/path/sep' );
var cwd = require( '@stdlib/process/cwd' );
var parts = cwd().split( PATH_SEP );
console.log( parts );
Usage: cwd [options]
Options:
-h, --help Print this message.
-V, --version Print the package version.
$ cwd
/path/to/current/working/directory
@stdlib/process/chdir
: change the current working directory.