6.0.0 • Published 5 years ago

fs-posix v6.0.0

Weekly downloads
31,187
License
MIT
Repository
github
Last release
5 years ago

fs-posix

NPM version Travis AppVeyor Codecov David

Add cross-platform path support for Node file system.

Why

Install

npm install --save fs-posix

Usage

require("fs-posix");              // Must load before `fs-extra`
const fs = require("fs");
fs.readFileSync("~/.npmrc");      // Returns the contents of `.npmrc` in home folder
fs.readFileSync("/etc/hosts");    // Returns the contents of `hosts` in etc folder
fs.readFileSync("/tmp/test.log")  // Returns the contents of `test.log` in temp folder