MCPcopy
hub / github.com/caolan/highland

github.com/caolan/highland @2.13.5 sqlite

repository ↗ · DeepWiki ↗ · release 2.13.5 ↗
444 symbols 1,122 edges 24 files 298 documented · 67%
README

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

Core symbols most depended-on inside this repo

push
called by 592
lib/index.js
_
called by 474
bench/underscore.js
delay
called by 137
test/test.js
next
called by 115
lib/index.js
exposeMethod
called by 60
lib/index.js
noValueOnErrorTest
called by 50
test/test.js
valueEquals
called by 49
test/test.js
callback
called by 36
bench/lodash.js

Shape

Function 444

Languages

TypeScript100%

Modules by API surface

bench/lodash.js301 symbols
test/test.js41 symbols
lib/index.js40 symbols
bench/underscore.js25 symbols
docs/js/foundation.min.js10 symbols
docs/js/foundation/foundation.orbit.js8 symbols
docs/js/foundation/foundation.js7 symbols
tasks/docs.js5 symbols
bench/bench.js5 symbols
docs/js/foundation/foundation.joyride.js1 symbols
docs/js/foundation/foundation.interchange.js1 symbols

Used by 1 indexed graphs manifest dependencies, hub-wide

Dependencies from manifests, versioned

bluebird3.3.5 · 1×
browserify13.0.0 · 1×
browserify-shim3.8.11 · 1×
concat-stream1.4.1 · 1×
eslint2.10.0 · 1×
grunt1.0.1 · 1×
grunt-browserify5.0.0 · 1×
grunt-bump0.8.0 · 1×
grunt-contrib-nodeunit2.0.0 · 1×
grunt-contrib-uglify2.0.0 · 1×
grunt-eslint18.0.0 · 1×

For agents

$ claude mcp add highland \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact