All Projects → feathersjs-ecosystem → feathers-blob

feathersjs-ecosystem / feathers-blob

Licence: MIT license
Feathers service for blob storage, like S3.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to feathers-blob

feathers-objection
Feathers database adapter for Objection.js, an ORM based on KnexJS SQL query builder for Postgres, Redshift, MSSQL, MySQL, MariaDB, SQLite3, and Oracle. Forked from feathers-knex.
Stars: ✭ 89 (+0%)
Mutual labels:  feathersjs, feathers-service-adapter
krawler
A minimalist (geospatial) ETL
Stars: ✭ 51 (-42.7%)
Mutual labels:  feathersjs
moleculer-adapter-feathers
Moleculer service mixin wrapping Feathers.js services
Stars: ✭ 17 (-80.9%)
Mutual labels:  feathersjs
express
[MOVED] Feathers Express framework bindings and REST transport plugin
Stars: ✭ 15 (-83.15%)
Mutual labels:  feathersjs
redux-crud-example
Basic crud react-redux-featherjs app for managing contacts
Stars: ✭ 54 (-39.33%)
Mutual labels:  feathersjs
FlipED
A LMS built specifically for Thailand's Education 4.0 system.
Stars: ✭ 24 (-73.03%)
Mutual labels:  feathersjs
feathers-shallow-populate
Feathersjs populate relational data
Stars: ✭ 21 (-76.4%)
Mutual labels:  feathersjs
serum-price-api
An easy to use API to know SPL Tokens price.
Stars: ✭ 23 (-74.16%)
Mutual labels:  feathersjs
feathers-casl
feathers.js + casl: hooks & channels
Stars: ✭ 25 (-71.91%)
Mutual labels:  feathersjs
react-menu-monkey-client
Frontend for a recipe box website
Stars: ✭ 59 (-33.71%)
Mutual labels:  feathersjs
feathers-findone
Adds a .findOne() method to services in Feathers.js
Stars: ✭ 14 (-84.27%)
Mutual labels:  feathersjs
quasar-starter-ssr-pwa-jest-cypress
Accelerated starter kit for building a quasar 17 app.
Stars: ✭ 49 (-44.94%)
Mutual labels:  feathersjs
vue-syncers-feathers
Synchronises feathers services with vue objects, updated in real time
Stars: ✭ 33 (-62.92%)
Mutual labels:  feathersjs
feathers-versionate
Create and work with nested services.
Stars: ✭ 29 (-67.42%)
Mutual labels:  feathersjs
Awesome Cheatsheets
👩‍💻👨‍💻 Awesome cheatsheets for popular programming languages, frameworks and development tools. They include everything you should know in one single file.
Stars: ✭ 26,007 (+29121.35%)
Mutual labels:  feathersjs
flutter feathersjs.dart
Communicate with your feathers js server from flutter app with unbelieved ease and make happy your customers.
Stars: ✭ 19 (-78.65%)
Mutual labels:  feathersjs
mobx-crud-example
A crud mobx project using react, featherjs and mongodb
Stars: ✭ 22 (-75.28%)
Mutual labels:  feathersjs
myethereumapp
Web client for viewing data from the Etherscan API
Stars: ✭ 18 (-79.78%)
Mutual labels:  feathersjs
Feathers
A framework for real-time applications and REST APIs with JavaScript and TypeScript
Stars: ✭ 13,761 (+15361.8%)
Mutual labels:  feathersjs
react-native-mobx-feathers
A basic App using react-navigation + mobx + feathers
Stars: ✭ 31 (-65.17%)
Mutual labels:  feathersjs

feathers-blob

Node.js CI Dependency Status Download Status

Feathers abstract blob store service

Installation

npm install feathers-blob --save

Also install a abstract-blob-store compatible module.

API

const BlobService = require('feathers-blob')

blobService = BlobService(options)

  • options.Model is an instantiated interface that implements the abstract-blob-store API
  • options.id is a string 'key' for the blob identifier.
  • returnUri defaults is true, set it to false to remove it from output.
  • returnBuffer defaults is false , set it to true to return buffer in the output.

Tip: returnUri/returnBuffer are mutually exclusive.

If you only want a buffer output instead of a data URI on create/get operations, you need to set returnBuffer to be true, also to set retuarnUri to be false.

If you need both, use the default options, then extract the buffer from the data URI on the client-side to avoid transferring the data twice over the wire.

blobService.create(body, params)

where input body is an object with either:

  • a key uri pointing to data URI of the blob,
  • a key buffer pointing to raw data buffer of the blob along with its contentType (i.e. MIME type).

Optionally, you can specify in the body the blob id which can be the file path where you want to store the file, otherwise it would default to ${hash(content)}.${extension(contentType)}.

Tip: You can use feathers hooks to customize the id. You might not want the client-side to write whereever they want.

returns output 'data' of the form:

{
  [this.id]: `${hash(content)}.${extension(contentType)}`,
  uri: body.uri, // When returnUri options is set true
  buffer: body.buffer, // When returnBuffer options is set true
  size: length(content)
}

blobService.get(id, params)

returns output data of the same form as create.

blobService.remove(id, params)

Params:

Query:

  • VersionId (string): Version ID of document to access if using a versioned s3 bucket

Example:

blobService.get('my-file.pdf', {
  query: {VersionId: 'xslkdfjlskdjfskljf.sdjfdkjfkdjfd'},
})

Example

const { getBase64DataURI } = require('dauria');
const AWS = require('aws-sdk');
const S3BlobStore = require('s3-blob-store');
const feathers = require('@feathersjs/feathers');
const BlobService = require('feathers-blob');

const s3 = new AWS.S3({
  endpoint: 'https://{service}.{region}.{provider}.com',
  accessKeyId: process.env.AWS_ACCESS_KEY_ID,
  secretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,
});

const blobStore = S3BlobStore({
  client: s3,
  bucket: 'feathers-blob'
});

const blob = {
  uri: getBase64DataURI(new Buffer('hello world'), 'text/plain')
}

const app = feathers();

app.use('/upload', BlobService({
  Model: blobStore
}));

const blobService = app.service('upload');

blobService.create(blob).then(function (result) {
  console.log('Stored blob with id', result.id);
}).catch(err => {
  console.error(err);
});

Should you need to change your bucket's options, such as permissions, pass a params.s3 object using a before hook.

app.service('upload').before({
  create(hook) {
    hook.params.s3 = { ACL: 'public-read' }; // makes uploaded files public
  }
});

For a more complete example, see examples/app which can be run with npm run example.

Tests

Tests can be run by installing the node modules and running npm run test.

To test the S3 read/write capabilities set the environmental variable S3_BUCKET to the name of a bucket you have read/write access to. Enable the versioning functionality on the bucket.

License

Copyright (c) 2018

Licensed under the MIT license.

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].