npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dmedina2015/skipper-gridfs

v1.1.0

Published

Alternative skipper adapter to allow uploading files to MongoDB's GridFS. Fork made by Daniel Medina.

Downloads

83

Readme

GridFS Filesystem Adapter

npm version   Build Status  

GridFS adapter for receiving upstreams. Particularly useful for handling streaming multipart file uploads from the Skipper body parser.

This is a fork from skipper-gridfs. Below are the diferences from base repository:

  • Added support to maxBytes option, using similar logic from skipper-disk. Behavior:

    • An error is thrown when upload stream exceeds bytes defined in maxBytes parameter.
    • Limit is applied for all upload stream (all files in the same request, not for each file individually)
    • Files uploaded before limit is reached are saved in GridFS. Only the one that exceeds and the subsequent are not saved.
    • Garbage of unfinished upload is removed using GridFSBucketWriteStream.abort() function
  • Added support to onProgress using same logic from skipper-disk

  • Added support to Node >= 14 & MongoDB Node Driver 3.6.5

  • CI using official skipper-adapter-test

  • Bug fix in function adapter.rm() that causes callback to be called twice. Detais about it you find here.

All the credits about the original package belongs to @willhuang85 and the staff. Great job guys!

Currently only supports Node 6 and up. Node 15 included!

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

Installation

$ npm install @dmedina2015/skipper-gridfs --save

Also make sure you have skipper installed as your body parser.

Skipper is installed by default in Sails v1.4.2.

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

Usage

req.file('avatar')
.upload({
  adapter: require('@dmedina2015/skipper-gridfs'),
  uri: 'mongodb://username:[email protected]:27017/myDatabase'
}, function whenDone(err, uploadedFiles) {
  if (err) return res.negotiate(err);
  else return res.ok({
    files: uploadedFiles,
    textParams: req.params.all()
  });
});

For more detailed usage information and a full list of available options, see the Skipper docs, especially the section on "Uploading to GridFS".

| Option | Type | Details | | --------------- | :--------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | uri | ((string)) | URI to connect to Mongo instance, e.g. mongodb://username:password@localhost:27107/databasename. (Check mongo client URI syntax). | | bucketOptions | ((object)) | An optional parameter that matches the GridFSBucket options (Check mongo gridfs bucket options). | | mongoOptions | ((object)) | An optional paramter that matches the MongoClient.connect options (Check mongo client options). | | maxBytes | ((integer))| Optional. Max total number of bytes permitted for a given upload, calculated by summing the size of all files in the upstream; e.g. if you created an upstream that watches the "avatar" field (req.file('avatar')), and a given request sends 15 file fields with the name "avatar", maxBytes will check the total number of bytes in all of the 15 files. If maxBytes is exceeded, the already-written files will be left untouched, but unfinshed file uploads will be garbage-collected, and not-yet-started uploads will be cancelled. (Note that maxBytes is currently experimental) | | onProgress | ((function)) | Optional. This function will be called again and again as the upstream pumps chunks into the receiver with a dictionary (plain JavaScript object) representing the current status of the upload, until the upload completes.

Error codes

  • E_EXCEEDS_UPLOAD_LIMIT (when maxBytes is exceeded for upstream)

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

Contributions

are welcomed :ok_hand:

To run the tests:

$ URI=mongodb://username:password@localhost:27107/databasename npm test

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

License

MIT