1.0.2 • Published 5 years ago

dummy-node-fs v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Installation

npm install dummy-node-fs

Usage

const fs = dummyFs({
    './path/dst/file.js': 'test',
    './path/to/other': {},
    './path/to/new/nested/file.js': '',
    './path/to/src/files': {},
});
fs.existsSync('./path/to'); //true
fs.mkdirSync('./path/to/project');
fs.existsSync('./path/to/project'); // true
const content = fs.readFileSync('./path/dst/file.js'); // test

API

Implemented methods:

  • existsSync
  • mkdirSync
  • readFileSync
  • writeFileSync

Note

Feel free to extend this API.

Licence

MIT