proxy-fs
v0.0.10
Published
A simple proxy filesystem.
Downloads
49
Readme
proxy-fs
A simple proxy filesystem.
example
var mfs = new MemoryFileSystem({});
var pfs = new ProxyFileSystem(function (path) {
if (/abc/.test(path)) {
return {
path: '/data/hello.js',
fileSystem: mfs
};
}
});
mfs.mkdirpSync('/data');
mfs.writeFileSync('/data/hello.js', 'hello');
console.log(String(pfs.readFileSync('/data/abc.js')));
// > hello
License
MIT © zswang