0.0.2 • Published 4 years ago

fs-fuse v0.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

fs-fuse

Export any Node.js fs-like object as a FUSE filesystem

Node.js fs methods

The following fs methods' behavior directly maps to corresponding FUSE operations:

chmod, chown, fsync, ftruncate, link, mkdir, read, readdir, readlink, rename, rmdir, symlink, truncate, unlink, write

Other FUSE operations internally use the following fs methods:

FUSE opfs methods
wrapFdopen, close
getattr, fgetattrstat, fstat, lstat
readcreateReadStream
writecreateWriteStream
releaseclose
utimensfutimes, utimes

Not all of these fs methods need to be implemented. For example, the file descriptor ones are not needed if their path based counterparts are implemented, and viceversa.

Non standard FUSE methods

If available on the fs object, the following FUSE compatible methods can be used too:

fuse_access, create, destroy, flush, fsyncdir, getxattr, init, listxattr, mknod, opendir, releasedir, removexattr, setxattr, statfs

Note that these are FUSE functions and need to have the EXACT signature and behaviour expected by FUSE, which is different from the Node.js fs API.