npm install path-name> Cross-platform PATH env name
 
The PATH environment variable name is different on different operating systems. This package will return the variable name on the current system.
``sh`
npm i -S path-name
`js
const PATH = require('path-name')
// On Linux and OSX
console.log(PATH)
// > PATH
// On Windows (usually, not allways)
console.log(PATH)
// > Path
``
MIT © Zoltan Kochan