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

mississippi

Package Overview
Dependencies
Maintainers
2
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mississippi - npm Package Compare versions

Comparing version 3.0.0 to 4.0.0

9

changelog.md

@@ -5,7 +5,16 @@ # mississippi Change Log

## 4.0.0 - 2019-03-21
* Update through2 to 3.0.1 (from 2.0.0) BREAKING: readable-stream 2 -> 3
* Update flush-write-stream to 2.0.0 (from 1.0.0) BREAKING: readable-stream ^2.3.6 -> ^3.1.1
* Update concat-stream to 2.0.0 (from 1.5.0) BREAKING: readable-stream ^2.2.2 -> ^3.0.2
* Update duplexify to 4.0.0 (from 3.4.2) BREAKING: readable-stream ^2.0.0 -> ^3.1.1
## 3.0.0 - 2018-02-26
* Update to pump@3.0.0. Returns the last stream the pipeline to enable chaining. (Use the individual modules to avoid potentially unnecessary major updates in your project).
## 2.0.0 - 2018-01-30
* Update to pump@2.0.1. (Use the individual modules to avoid potentially unnecessary major updates in your project)
* Pin engines support to >= Node 4.0.0. Run Node LTS or greater.

10

package.json
{
"name": "mississippi",
"version": "3.0.0",
"version": "4.0.0",
"description": "a collection of useful streams",

@@ -12,6 +12,6 @@ "main": "index.js",

"dependencies": {
"concat-stream": "^1.5.0",
"duplexify": "^3.4.2",
"concat-stream": "^2.0.0",
"duplexify": "^4.0.0",
"end-of-stream": "^1.1.0",
"flush-write-stream": "^1.0.0",
"flush-write-stream": "^2.0.0",
"from2": "^2.1.0",

@@ -22,3 +22,3 @@ "parallel-transform": "^1.1.0",

"stream-each": "^1.1.0",
"through2": "^2.0.0"
"through2": "^3.0.1"
},

@@ -25,0 +25,0 @@ "devDependencies": {},

@@ -72,3 +72,3 @@ # mississippi

var fs = require('fs')
var split = require('split2')
var split = require('binary-split') // require('split2') would work here as well

@@ -113,3 +113,3 @@ var newLineSeparatedNumbers = fs.createReadStream('numbers.txt')

// instead of doing a.pipe(b), use pipelin
// instead of doing a.pipe(b), use pipeline
var resizeAndOptimize = miss.pipeline(imageResize, pngOptimizer)

@@ -372,3 +372,3 @@ // `resizeAndOptimize` is a transform stream. when you write to it, it writes

Note that `miss.parallel` preserves input ordering, if you don't need that then you can use [through2-concurrent](https://github.com/almost/through2-concurrent) instead, which is very similar to this otherwise.
Note that `miss.parallel` preserves input ordering. Passing the option `{ordered:false}` will output the data as soon as it's processed by a transform, without waiting to respect the order (this previously required a separate module [through2-concurrent](https://github.com/almost/through2-concurrent)).

@@ -375,0 +375,0 @@ #### original module

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