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

chanel

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chanel

Channel-based control-flow for parallel tasks with concurrency control

  • 1.0.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1K
decreased by-53.37%
Maintainers
1
Weekly downloads
 
Created
Source

chanel Build Status

Javascript channels using co . You can consider this a streaming async.parallel with concurrency control.

This is very similar to other libraries like batch except:

  • You can push jobs and pull data while the callbacks are in progress
  • You don't have to wait until all the callbacks are finished for you to start reading data
  • You don't have to wait until you define all or even any callbacks to begin reading
  • Concurrency control
  • Data will always be returned in the correct order
  • You can discard data

The general use-case is concatenating files (as the example above).

var chanel = require('chanel')

co(function* () {
  var ch = chanel()
  // only two file descriptors open at a time
  ch.concurrency = 2

  var files = [
    '1.txt',
    '2.txt',
    '3.txt',
    '4.txt',
    '5.txt',
    '6.txt',
  ]

  // create and push the functions
  files.forEach(function (filename) {
    ch.push(function (done) {
      fs.readFile(filename, 'utf8', done)
    })
  })

  while (ch.readable) {
    // write each file to stdout in order
    process.stdout.write(yield* ch.read())
  }

  // exit the process (unnecessary)
  process.exit()
})()

or concatenate them all with:

var results = yield* ch.flush()
var string = results.join('')

For this specific example, you're better off using combine-streams, but there are use-cases where you need to buffer the entire file such as build systems with compilation steps.

API

var ch = chanel([options])

  • concurrency - maximum number of concurrent callbacks
  • discard - discard the results of the callbacks. Will only throw errors, if any, if true.
  • closed or open - by default, the channel is closed, meaning yield* ch.flush() will flush only the remaining callbacks. If opened, yield* ch.flush() will not yield until the channel is closed.

ch.push(fn)

Push a thunk to the channel.

var result = yield* ch.read()

Pull the next value in the channel. This waits for the next result in the channel indefinitely whether or not the channel is closed.

If an error was thrown, this function will throw that error, and no more additional callbacks will be executed. To continue executing callbacks, just .read() again.

If this.discard === false, errors will be thrown in the correct order. Otherwise, errors will be thrown ASAP.

var results = yield* ch.flush()

Waits until all the pending callbacks are completed. Unless you are discarding data, all the results of the callbacks will be returned as the array results.

ch.queue

Number of results waiting to be read.

ch.readable

A boolean to check whether you can yield* ch.read(). Otherwise, a yield* ch.read() call may never be yielded.

ch.closed

Whether the channel is closed. true by default.

License

The MIT License (MIT)

Copyright (c) 2014 Jonathan Ong me@jongleberry.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Package last updated on 04 Feb 2014

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