Git Product home page Git Product logo

koa-stream-to-file's Introduction

Koa Stream To File

based on koa-save-to-file ==> https://github.com/jonathanong/koa-save-to-file

Compatible with koa-scaffold stream to file saver. Useful when trying to upload streams f.e. with content-type "image/jpeg" or similar.

Install

At the moment this repository is not integrated into the npm-modules. In order to use it like one add following to your package.json - file:

"dependencies": {
        ...
        "koa-stream-to-file": "https://github.com/unicorn-it/koa-stream-to-file/archive/0.0.1.tar.gz",
        ...

Example

var stf = require('koa-stream-to-file');

try {
    yield stf.saveToFile(this.req, "location/to/save/your/file" + "filename.jpg"); //or other file-type f.e. .png
    } catch (err) {
        console.log(err);
    }

.saveToFile([stream], destination [, options])

  • stream - if not defined, uses request directly.
  • destination - a string specifying where you want to save the file to.
  • options
    • limit - the file limit. Overrides this.limit.
    • expected - expected file size, will throw if it does not match up. content-length by default.

returns destination

koa-stream-to-file's People

Contributors

lukast avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.