Add cross-platform path support for Node file system
npm install fs-posixfs-posix
=====





Add cross-platform path support for Node file system.
- Add POSIX style path support for Windows.
- POSIX style root path will be convert to Git install directory.
- Support for the Cygwin mount table.
- Support for The cygdrive path prefix.
- Add Windows style path support for WSL.
- Add tilde path prefix support.
``bash`
npm install --save fs-posix
`jsfs-extra
require("fs-posix"); // Must load before .npmrc
const fs = require("fs");
fs.readFileSync("~/.npmrc"); // Returns the contents of in home folderhosts
fs.readFileSync("/etc/hosts"); // Returns the contents of in etc foldertest.log
fs.readFileSync("/tmp/test.log") // Returns the contents of in temp folder``