All Projects → anyfs → anyfs

anyfs / anyfs

Licence: MIT License
Portable file system for Node

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to anyfs

Oneupflysystembundle
A Flysystem integration for your Symfony projects.
Stars: ✭ 541 (+3082.35%)
Mutual labels:  dropbox, filesystem, aws-s3
Vscode Remote Workspace
Multi protocol support for handling remote files like local ones in Visual Studio Code.
Stars: ✭ 197 (+1058.82%)
Mutual labels:  dropbox, filesystem, ftp
Gulp Ftp
[DEPRECATED] Upload files to an FTP-server
Stars: ✭ 100 (+488.24%)
Mutual labels:  gulp, gulp-plugin, ftp
gulp-es6-transpiler
[DEPRECATED] Transpile ES2015 to ES5
Stars: ✭ 47 (+176.47%)
Mutual labels:  gulp, gulp-plugin
dropbox-fs
📦 Node FS wrapper for Dropbox
Stars: ✭ 35 (+105.88%)
Mutual labels:  dropbox, filesystem
backmeup
BackMeUp: An automated MySQL / MariaDB databases and files backup solution on *nix Machines using Amazon S3, WebDAV (ownCloud / NextCloud etc.), Google Drive and Dropbox.
Stars: ✭ 80 (+370.59%)
Mutual labels:  dropbox, aws-s3
kafka-connect-fs
Kafka Connect FileSystem Connector
Stars: ✭ 107 (+529.41%)
Mutual labels:  filesystem, ftp
Meteor-Files-Demo
Demo application for ostrio:files package
Stars: ✭ 16 (-5.88%)
Mutual labels:  dropbox, aws-s3
Enchilada
Enchilada is a filesystem abstraction layer written in C#
Stars: ✭ 29 (+70.59%)
Mutual labels:  filesystem, ftp
gulp-merge-json
A gulp plugin to merge JSON & JSON5 files into one file
Stars: ✭ 35 (+105.88%)
Mutual labels:  gulp, gulp-plugin
gulp-px2rem
This is a gulp plugin for node-px2rem.
Stars: ✭ 19 (+11.76%)
Mutual labels:  gulp, gulp-plugin
flysystem-curlftp
Flysystem Adapter for the FTP with cURL implementation
Stars: ✭ 36 (+111.76%)
Mutual labels:  filesystem, ftp
gulp-sort
Sort files in stream by path or any custom sort comparator
Stars: ✭ 22 (+29.41%)
Mutual labels:  gulp, gulp-plugin
gulp-sitemap
Generate a search engine friendly sitemap.xml using a Gulp stream
Stars: ✭ 60 (+252.94%)
Mutual labels:  gulp, gulp-plugin
gulp-xo
Validate files with XO
Stars: ✭ 37 (+117.65%)
Mutual labels:  gulp, gulp-plugin
s3-concat
Concatenate Amazon S3 files remotely using flexible patterns
Stars: ✭ 32 (+88.24%)
Mutual labels:  filesystem, aws-s3
gulp-esbuild
gulp plugin for esbuild bundler
Stars: ✭ 39 (+129.41%)
Mutual labels:  gulp, gulp-plugin
gulp-recess
[DEPRECATED] Lint CSS and LESS with RECESS
Stars: ✭ 42 (+147.06%)
Mutual labels:  gulp, gulp-plugin
gulp-iife
A Gulp plugin for wrapping JavaScript code in IIFEs.
Stars: ✭ 39 (+129.41%)
Mutual labels:  gulp, gulp-plugin
php-ftp-client
📦 Provides helper classes and methods to manage FTP files in an OOP way.
Stars: ✭ 81 (+376.47%)
Mutual labels:  filesystem, ftp

anyfs

npm npm Travis npm

AnyFS is a portable filesystem abstraction for Node. It aims to provide a consistent API for different file systems.

WARNING: AnyFS is under heavy development, things may change at any time! a

Features

  • Extensible with plugins
  • Super portable with file system adapters
  • Works well with Gulp (vinyl-fs plugin)
  • API with Promise support

Adapters

AnyFS comes with following adapters.

  • Dropbox - NPM: anyfs-dropbox-adapter
  • FTP - NPM: anyfs-ftp-adapter
  • AWS S3 - NPM: anyfs-s3-adapter
  • Memory - Builtin, access with AnyFS.MemoryAdapter
  • Local: local file system
  • SFTP
  • Baidu
  • GIT
  • SVN

Plugins

  • Core: builtin, basic filesystem support.
  • glob: match files easily.
  • vinyl-fs: vinyl-fs port, works well with gulp

Usage

var AnyFs = require('anyfs');
var FtpAdapter = require('anyfs-ftp-adapter');
var DropboxAdapter = require('anyfs-dropbox-adapter');
var VinylFsPlugin = require('anyfs-vinyl-fs-plugin');
AnyFS.addPlugin(new VinylFsPlugin());

var fs1 = new AnyFS(new FtpAdapter({
    server: 'ftp.example.com',
    username: 'user',
    password: 'password',
}));

var fs2 = new AnyFS(new DropboxAdapter({
    key: 'appkey',
    secret: 'appsecret',
    token: 'token',
}));

// Copy files across filesystems(requires the vinyl-fs plugin)
fs1.src('/**/*.jpg')
    .pipe(fs2.dest('/backup/abc/'));

// Promise style API
fs1.mkdir('/doc')
    .then(function() {
        return this.writeFile('/doc/index.md', "content");
    })
    .then(function() {
        return this.metadata('/doc/index.md');
    })
    .done(function(metadata) {
        console.log(metadata.size);
    }, function(err) {
        console.log('Error occured: ', err);
    });

// callback API
fs.mkdir('/doc', function(err) {
    if (err) {
        console.log(err);
    } else {
        console.log('mkdir ok');
    }
});

API

Core API

Following APIs are basic file system APIs.

constructor(adapter, options)

The constructor accepts an adapter and an options object.

Common options:

  • cwd: Current working directory.

metadata(path[, callback(error, metadata)])

Retrieves file and folder metadata.

Folder metadata:

{
    "name": "dir1",
    "time": [Date Object],
    "is_dir": true,
}

File metadata:

{
    "name": "file1.txt",
    "time": [Date Object],
    "is_dir": false,
    "size": 123,
    ...
}

If callback is not provided, a promise is returned.

list(path[, callback(error, list)])

Get contents of directory.

[
    {
        // metadata
    },
    ...
]

mkdir(path[, callback(error)])

Create directory recursively.

If callback is not provided, a promise is returned.

delete(path[, callback(error)])

Delete file.

If callback is not provided, a promise is returned.

deleteDir(path[, callback(error)])

Delete directory recursively.

If callback is not provided, a promise is returned.

move(oldPath, newPath[, callback(error)])

Move file or directory to a new place.

Parent folder of newPath is created automaticly.

If callback is not provided, a promise is returned.

writeFile(path, content[, options][, callback(error)])

Write file content, will try to create parent directory.

If callback is not provided, a promise is returned.

readFile(path[, options][, callback(error, data)])

Read file content.

If callback is not provided, a promise is returned.

createWriteStream(path[, options])

Create write stream.

createReadStream(path[, options])

Create read stream.

Extra API

Extra APIs are supported by plugins

Create Custom Adapters

See adapter specification

Create Plugins

Acknowledgement

Logo by denjello

Inspired by Flysystem

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].