rest-fs icon indicating copy to clipboard operation
rest-fs copied to clipboard

restful interface to a filesystem.

Results 3 rest-fs issues
Sort by recently updated
recently updated
newest added

Goal was to allow use of any fs interface e.g. [s3fs](https://www.npmjs.com/package/s3fs), [ftpfs](https://github.com/maxogden/ftpfs), possibly [browserify-fs](https://github.com/mafintosh/browserify-fs) etc.. This brings down to removing dependencies mv, rimraf, findit and using provided/native fs only Adds...

``` bash $ npm start > [email protected] start /**/rest-fs > node index.js $ wget http://localhost:3000/usr/share/icons/hicolor/16x16/apps/Thunar.png -O /tmp/Thunar.png $ f=/usr/share/icons/hicolor/16x16/apps/Thunar.png; node -e "console.log(require('fs').readFileSync('$f'))" $ f=/tmp/Thunar.png; node -e "console.log(require('fs').readFileSync('$f'))" ``` Image files...

``` $ uname -a Linux myhost 3.14.4 #1 SMP Fri May 23 11:31:25 BRT 2014 x86_64 GNU/Linux $ npm --version 2.10.1 $ node --version v0.12.4 $ npm test > [email protected]...