home-dir

Get home directory path on any platform

Usage no npm install needed!

<script type="module">
  import homeDir from 'https://cdn.skypack.dev/home-dir';
</script>

README

home-dir

Get home directory path on any platform

Install

npm install home-dir --save

Usage

var homeDir = require('home-dir');

console.log(homeDir()); // Outputs full path to your home directory

// OR

var dir = homeDir('/path/to/somehwere');
console.log(dir) // OUTPUTS: /(HOME)/path/to/somewhere

// OR

var homeDir = require('home-dir').directory;