Package Exports
- ospath
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ospath) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ospath
A JavaScript component that provides operating specific path values.
Installation
npm i --save ospathAPI
ospath.data()
Returns the directory where an application should store its data directory.
- Windows:
%APPDATA% - OS X:
~/Library/Application Support - Unix-like:
$XDG_CONFIG_HOMEor~/.config
ospath.desktop()
Returns the users desktop directory. On every OS, this is just the home()
dir and Desktop.
ospath.home()
Returns the user's home directory.
- Windows:
%USERPROFILE% - Unix-like:
$HOME
ospath.tmp()
Returns a temporary directory. Could also use require('os').tmpdir().
- Windows:
%TEMP% - Unix-like:
/tmp
License
MIT