1.4.1 • Published 4 years ago

@annoai/filesystem-storage-pkgcloud v1.4.1

Weekly downloads
54
License
UNLICENSED
Repository
github
Last release
4 years ago

Filesystem provider Build Status NPM download count

Filesystem storage provider for pkgcloud based on loopback-storage-service

You can either use the client on its own:

const filesystem = require('filesystem-storage-pkgcloud');
const client = filesystem.createClient({ root: '_PATH_TO_LOCAL_STORAGE_DIRECTORY_' });

or add it to pkgcloud providers:

const pkgcloud = require('@annoai/pkgcloud');
pkgcloud.providers.filesystem = {};
pkgcloud.providers.filesystem.storage = require('filesystem-storage-pkgcloud');
const client = pkgcloud.storage.createClient({
  provider: 'filesystem',
  root: '_PATH_TO_LOCAL_STORAGE_DIRECTORY_',
});

Author: Jemsoft Pty Ltd.

License: MIT