JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 41
  • Score
    100M100P100Q96369F
  • License MIT

A skipper adapter to allow uploading files to MongoDB's GridFS

Package Exports

  • skipper-gridfs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (skipper-gridfs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Skipper GridFS Blob Adapter

NPM version    

GridFS adapter for receiving streams of file streams. Particularly useful for streaming multipart file uploads via Skipper.

========================================

Installation

$ npm install skipper-gridfs --save

========================================

Usage

First instantiate a blob adapter (blobAdapter):

var blobAdapter = require('skipper-gridfs')();

Build a receiver (receiving):

var receiving = blobAdapter.receive();

Then stream file(s) from a particular field (req.file('foo')):

req.file('foo').upload(receiving, function (err, filesUploaded) {
// ...
});

========================================

Options

All options may be passed either into the blob adapter's factory method:

var blobAdapter = require('skipper-gridfs')({
// These options will be applied unless overridden.
});

Or directly into a receiver:

var receiving = blobAdapter.receive({
// Options will be applied only to this particular receiver.
});
Option Type Details
dbname ((string)) Your Mongodb database. Defaults to "your-mongodb-name".
host ((string)) Your Mongodb host address. Defaults to "localhost".
port ((integer)) Your Mongodb port address. Defaults to 27107.
dirname ((string)) Metadata associated with the Gridstore to emulate directory structure in MongoDb. Defaults to "/"
saveAs() ((function)) An optional function that can be used to define the logic for naming files. For example:
function (file) {return Math.random()+file.name;} });
By default, the filename of the uploaded file is used, including the extension (e.g. "Screen Shot 2014-05-06 at 4.44.02 PM.jpg". If a file already exists at dirname with the same name, it will be overridden.
bucket ((string)) Your Mongodb bucket. Defaults to "fs" bucket.
username ((string)) Your Mongodb database username. Defaults to "".
password ((string)) Your Mongodb database password. Defaults to "".
uri ((string)) An optional parameter if you wish the enter your mongodb credentials as a URI, e.g. mongodb://username:password@localhost:27107/databasename.
If uri is passed in as an option, then the options dbname, host, port, username and password options are ignored.
Check out the mongoose api for more examples of URIs.

========================================

Advanced Usage

upstream.pipe(receiving)

As an alternative to the upload() method, you can pipe an incoming upstream returned from req.file() (a Readable stream of Readable binary streams) directly to the receiver (a Writable stream for Upstreams.)

req.file('foo').pipe(receiving);

There is no performance benefit to using .pipe() instead of .upload()-- they both use streams2. The .pipe() method is available merely as a matter of flexibility/chainability. Be aware that .upload() handles the error and finish events for you; if you choose to use .pipe(), you will of course need to listen for these events manually:

req.file('foo')
.on('error', function onError() { ... })
.on('finish', function onSuccess() { ... })
.pipe(receiving)

========================================

Contributions

are welcomed 👌