Socket
Socket
Sign inDemoInstall

noria

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

noria

A collection of utilities and Classes for working with Node.js streams


Version published
Maintainers
1
Created
Source

Noria

NPM version License Build Status Coverage Status Dependency Status

DEPRECATED: This package is no longer maintained

A collection of utilities for working with Node.js streams.

Installation

Install via npm:

npm install noria

API

collect([encoding], [objectMode], callback, [options])
  • encoding String (optional) - alias for options.encoding.
  • objectMode Boolean (optional) - alias for options.objectMode.
  • callback Function - Called after all data has been collected. Takes one data parameter.
  • options Object (optional) - Options passed to the stream.

Returns a new Transform stream that buffers all incoming data and then calls callback(data). Or, if objectMode is true, data will be an array containing each object that has passed through. If encoding is defined, data will be converted to a string before it is passed to callback. The options parameter is identical to that of Node's Transform stream constructor.

The following will print the contents of a file to the console before writing it to a new location.

fs.createReadStream('liftoff-file.txt')
    .pipe(noria.collect('utf8', function(data) {
        console.log(data);
    }))
    .pipe(fs.createWriteStrem('landing-file.txt'));
init(data, [options])
  • data - The data to pass to the stream.
  • options Object (optional) - Options to pass to the stream.

Returns a new Readable stream initialized with some arbitrary data. If data is an array, each element in the array will be treated as a chunk of data. options.objectMode is true by default. The options parameter is identical that of Node's Readable stream constructor.

// Initializes with one chunk of type String.
noria.init('Colorless green ideas sleep furiously.');

// Initializes with three chunks of various types.
noria.init([42, 'than', {name: 'adams'}]);

// Initializes with one chunk of type Array.
noria.init([['the', 'universe']]);
wrap([prefix], [suffix], [options])
  • prefix Buffer | String (optional) - Data to prepend to the beginning of the stream.
  • suffix Buffer | String (optional) - Data to append to the end of the stream.
  • options Object (optional) - Options to pass to the stream.

Returns a new Transform stream that wraps the contents of a stream with an arbitrary prefix and suffix. Either can be omitted by passing null or by leaving the argument undefined. The options parameter is identical to that of Node's Transform stream constructor.

const fs = require('fs');

fs.createReadStream('elfish-ge.txt')
    // Contents: ' are the master programmers, and they '
    .pipe(noria.wrap(
        'The genes',
        'are programming for their lives.'
    )).pipe(process.stdout);

// Prints: 'The genes are the master programmers,
// and they are programming for their lives.'

License

Copyright © 2015 Akim McMath. Licensed under the MIT License.

Keywords

FAQs

Package last updated on 14 Feb 2016

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