Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

skipper-disk

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skipper-disk

Receive Skipper's file uploads on your local filesystem

  • 0.4.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
25K
increased by7.15%
Maintainers
1
Weekly downloads
 
Created
Source

skipper emblem - face of a ship's captain Disk Blob Adapter

NPM version     Build Status

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

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

Installation

$ npm install skipper-disk --save

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

Skipper is installed by defaut in Sails v0.10.

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

Usage

This module is bundled as the default file upload adapter in Skipper, so the following usage is slightly simpler than it is with the other Skipper file upload adapters.

In the route(s) / controller action(s) where you want to accept file uploads, do something like:

function (req, res) {
  req.file('avatar')
  .upload(function whenDone(err, uploadedFiles) {
    if (err) return res.negotiate(err);
    else return res.json({
      files: uploadedFiles,
      textParams: req.params.all()
    });
  });
}

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

Details

function (req, res) {

  req.file('avatar')
  .upload({

    // Specify skipper-disk explicitly (you don't need to do this b/c skipper-disk is the default)
    adapter: require('skipper-disk'),
  
    // You can apply a file upload limit (in bytes)
    maxBytes: 1000000
    
  }, function whenDone(err, uploadedFiles) {
    if (err) return res.negotiate(err);
    else return res.json({
      files: uploadedFiles,
      textParams: req.params.all()
    });
  });
}
OptionTypeDetails
dirname((string))The path to the directory on disk where file uploads should be streamed. May be specified as an absolute path (e.g. /Users/mikermcneil/foo) or a relative path from the current working directory. Defaults to ".tmp/uploads/". dirname can be used with saveAs- the filename from saveAs will be relative to dirname.
saveAs()((function)) -or- ((string))Optional. By default, Skipper decides an "at-rest" filename for your uploaded files (called the fd) by generating a UUID and combining it with the file's original file extension when it was uploaded ("e.g. 24d5f444-38b4-4dc3-b9c3-74cb7fbbc932.jpg").
If saveAs is specified as a string, any uploaded file(s) will be saved to that particular path instead (useful for simple single-file uploads).
If saveAs is specified as a function, that function will be called each time a file is received, passing it the raw stream and a callback. When ready, your saveAs function should call the callback, passing the appropriate at-rest filename (fd) as the second argument to the callback (and passing an error as the first argument if something went wrong). For example:
function (__newFileStream,cb) { cb(null, 'theUploadedFile.foo'); }

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

Specifying Options

All options may be passed in using any of the following approaches, in ascending priority order (e.g. the 3rd appraoch overrides the 1st)

1. In the blob adapter's factory method:
var blobAdapter = require('skipper-disk')({
  // These options will be applied unless overridden.
});
2. In a call to the .receive() factory method:
var receiving = blobAdapter.receive({
  // Options will be applied only to this particular receiver.
});
3. Directly into the .upload() method of the Upstream returned by req.file():
var upstream = req.file('foo').upload({
  // These options will be applied unless overridden.
});

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

Low-Level Usage

Warning: You probably shouldn't try doing anything in this section unless you've implemented streams before, and in particular streams2 (i.e. "suck", not "spew" streams).

File adapter instances, receivers, upstreams, and binary streams

First instantiate a blob adapter (blobAdapter):

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

Build a receiver (receiving):

var receiving = blobAdapter.receive();

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

req.file('foo').upload(receiving, function (err, filesUploaded) {
  // ...
});
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)

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

Contribute

See CONTRIBUTING.md.

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

License

MIT © 2013, 2014-

Mike McNeil, Balderdash & contributors

See LICENSE.md.

This module is part of the Sails framework, and is free and open-source under the MIT License.

image_squidhome@2x.png

githalytics.com alpha

Keywords

FAQs

Package last updated on 04 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc