fuse4js
fuse4js copied to clipboard
FUSE bindings for Javascript and node.js
FUSE supports concurrent operations, but these bindings do not. If one of the operation handlers waits to call its callback, further operations are blocked until it does.
Before this change, truncate operations weren't passed the callback, so the operation would never complete. This adds the callback to the list of args, hopefully I didn't miss anything.
I have a personal preference because of familiarity for nodejs, but the fuse binding seems to be missing one critical function: fuse_get_context(). I can't find it anywhere in the binding....
in Clang: ``` CXX(target) Release/obj.target/fuse4js/fuse4js.o ../fuse4js.cc:384:36: warning: missing field 'readlink' initializer [-Wmissing-field-initializers] struct fuse_operations ops = { 0 }; ^ 1 warning generated. ```
I'm getting strange behavior when trying to implement the `chmod()` function. It only gets passed 2 arguments it seems, the `path` and `mode`. But the callback function (expected as 3rd...
Fixes #35. It also looks like a few of these other OP's might also need this same treatment (i.e. "truncate"), though I haven't yet tested to verify that.
Hey. I've been trying to install fuse4js, however the command `sudo npm install -g --unsafe-perm fuse4js` results in these errors: http://pbin.in/Ze npm version: 2.7.0 node version: 0.12.0 OS: Debian Wheezy...
I'm working on a compiling proxy file system for frontend assets. The typical workflow for frontend developers involves setting up file watchers to trigger live reloading of browsers when contents...
Hi, I have tried compiling on v0.11.13 and would not compile due to errors. I then tried v0.8.7 which compiled fine without warnings. I then tried v0.10.29 which compiled and...
Hi, I'm trying to change a file's extension when I create it in the mounted file system. Is this possible? If so, how should I go about doing this? I...