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

stream-storage-chai-http

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-storage-chai-http

![Version](https://img.shields.io/badge/version-0.0.2-green.svg) ![npm](https://img.shields.io/npm/dy/stream-storage-chai-http)

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

stream-storage-chai-http

Version npm

Simple stream for using with chai-http.

npm install stream-storage-chai-http -D

Usage

const { StreamStorage } = require('stream-storage');
const streamStorage = new StreamStorage();

const server = require('./server');
const requester = chai.request(server).keepOpen();

streamStorage.put('HI')
    .then(() => {
        requester.post('/')
            .attach('file', streamStorage, 'test.txt')
            .end((err, res) => {
                streamStorage.destroy();
                //...
            });
    });

Contributors

dev

test

For run test:

npm run test

versions

  • 0.0.1 - init
  • 0.0.2 - tags

Keywords

FAQs

Package last updated on 15 Aug 2019

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