Get started with highland CDN
Apache-2.0 licensed
Functional-reactive library, Highland.js handles async JS data streams.
Tags:- streams
- async
- events
- pipe
Stable version
Copied!
How to start using highland CDN
// Include Highland.js library from CDN
const Highland = require('highland');
// Create an observable source
const source = new Highland(x => x.split(''));
// Apply some transformations using Highland operators
const transformed = source
.map(char => char.toUpperCase())
.filter(char => char !== ' ')
.take(5);
// Subscribe and log the result
transformed.subscribe(x => console.log(x));
// Feed the source with data
source.push('hello world');
Copied!
Copied!
All versions
1.10.0
1.11.0
1.12.0
1.13.0
1.13.1
1.13.2
1.13.3
1.14.0
1.15.0
1.16.0
1.16.1
1.16.2
1.17.0
1.18.0
1.19.0
1.19.1
1.20.0
1.21.0
1.22.0
1.23.0
1.24.0
1.24.1
1.25.0
1.25.1
1.25.2
1.25.3
1.25.4
1.26.0
1.26.1
1.26.2
1.26.3
1.27.0
1.27.1
1.28.0
1.29.0
1.8.1
1.9.0
2.0.0
2.1.0
2.10.0
2.10.1
2.10.2
2.10.3
2.10.4
2.10.5
2.11.0
2.11.1
2.12.0
2.13.0
2.13.1
2.13.2
2.13.3
2.13.4
*** 2.13.5
2.3.0
2.4.0
2.5.0
2.5.1
2.6.0
2.7.0
2.7.1
2.7.2
2.7.3
2.7.4
2.8.0
2.8.1
2.9.0
3.0.0-beta.1
3.0.0-beta.10
3.0.0-beta.2
3.0.0-beta.3
3.0.0-beta.4
3.0.0-beta.5
3.0.0-beta.6
3.0.0-beta.7
3.0.0-beta.8
3.0.0-beta.9