2.13.5 • Published 5 years ago

highland v2.13.5

Weekly downloads
54,228
License
Apache-2.0
Repository
github
Last release
5 years ago

Highland

The high-level streams library for Node.js and the browser. View the Highland website for more in-depth documentation.

build status Join the chat at https://gitter.im/caolan/highland

Introduction

Re-thinking the JavaScript utility belt, Highland manages synchronous and asynchronous code easily, using nothing more than standard JavaScript and Node-like Streams. You may be familiar with Promises, EventEmitters and callbacks, but moving between them is far from seamless. Thankfully, there exists a deeper abstraction which can free our code. By updating the tools we use on Arrays, and applying them to values distributed in time instead of space, we can discard plumbing and focus on the important things. With Highland, you can switch between synchronous and asynchronous data sources at will, without having to re-write your code. Time to dive in!

Made by @caolan, with help and patience from friends - Leave a tip or fork this :)

Examples

Usage as a Node.js module

var _ = require('highland');

Converting to/from Highland Streams

_([1,2,3,4]).toArray(function (xs) {
    // xs is [1,2,3,4]
});

Mapping over a Stream

var doubled = _([1,2,3,4]).map(function (x) {
    return x * 2;
});

Reading files in parallel (4 at once)

var data = _(filenames).map(readFile).parallel(4);

Handling errors

data.errors(function (err, rethrow) {
    // handle or rethrow error
});

Piping to a Node Stream

data.pipe(output);

Piping in data from Node Streams

var output = fs.createWriteStream('output');
var docs = db.createReadStream();

// wrap a node stream and pipe to file
_(docs).filter(isBlogpost).pipe(output);

// or, pipe in a node stream directly:
var through = _.pipeline(_.filter(isBlogpost));
docs.pipe(through).pipe(output);

Handling events

var clicks = _('click', btn).map(1);
var counter = clicks.scan(0, _.add);

counter.each(function (n) {
    $('#count').text(n);
});

Learn more at highlandjs.org

2.13.5

5 years ago

3.0.0-beta.10

5 years ago

2.13.4

5 years ago

3.0.0-beta.9

5 years ago

2.13.3

5 years ago

2.13.2

5 years ago

3.0.0-beta.8

5 years ago

2.13.1

5 years ago

3.0.0-beta.7

5 years ago

2.13.0

6 years ago

3.0.0-beta.6

6 years ago

2.12.0

6 years ago

2.11.1

7 years ago

3.0.0-beta.5

7 years ago

2.11.0

7 years ago

3.0.0-beta.4

7 years ago

2.10.5

7 years ago

2.10.4

7 years ago

2.10.3

7 years ago

2.10.2

7 years ago

2.10.1

7 years ago

3.0.0-beta.3

8 years ago

2.10.0

8 years ago

3.0.0-beta.2

8 years ago

2.9.0

8 years ago

2.8.1

8 years ago

2.8.0

8 years ago

2.7.4

8 years ago

2.7.3

8 years ago

2.7.2

8 years ago

2.7.1

8 years ago

2.7.0

8 years ago

3.0.0-beta.1

8 years ago

2.6.0

8 years ago

2.5.1

9 years ago

2.5.0

9 years ago

2.4.0

9 years ago

2.3.0

9 years ago

2.2.0

9 years ago

2.1.0

9 years ago

2.0.0

9 years ago

1.29.0

10 years ago

1.28.0

10 years ago

1.27.1

10 years ago

1.27.0

10 years ago

1.26.3

10 years ago

1.26.2

10 years ago

1.26.0

10 years ago

1.25.4

10 years ago

1.25.3

10 years ago

1.25.1

10 years ago

1.25.0

10 years ago

1.24.1

10 years ago

1.24.0

10 years ago

1.23.0

10 years ago

1.22.0

10 years ago

1.20.0

10 years ago

1.19.1

10 years ago

1.18.0

10 years ago

1.19.0

10 years ago

1.17.0

10 years ago

1.16.2

10 years ago

1.16.1

10 years ago

1.16.0

10 years ago

1.15.0

10 years ago

1.14.0

10 years ago

1.13.3

10 years ago

1.13.2

10 years ago

1.13.1

10 years ago

1.13.0

10 years ago

1.12.0

10 years ago

1.11.0

10 years ago

1.10.0

10 years ago

1.9.0

10 years ago

1.8.1

10 years ago

1.8.0

10 years ago

1.7.0

10 years ago

1.6.0

10 years ago

1.5.0

10 years ago

1.4.0

10 years ago

1.3.0

10 years ago

1.2.1

10 years ago

1.2.0

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago

0.0.2

11 years ago

0.0.1

11 years ago