Skip to content

bmeck/spawn-fs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spawn fs

creates a filesystem api using only child processes. useful for remote machine work. not the most performant for high end IO.

exports.createFS(spawnfn, opts, cb(err,fs))

It is HIGHLY recommended you set opts.platform since OSX does not ship with standard bins you see in other unices.

spawnfs.createFS(spawn, {
  platform: 'darwin'
}, function (err, fs) {
  fs.createWriteStream(...);
})

About

node's fs module using the `ssh` executable

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published