Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on Mar 12, 2024 via pnpm

readable-stream 1.1.14

Streams3, a user-land copy of the stream library from Node.js v0.11.x
Package summary
Share
0
issues
2
licenses
4
MIT
1
ISC
Package created
27 Jul 2012
Version published
13 Apr 2016
Maintainers
3
Total deps
5
Direct deps
4
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
4 Packages, Including:
core-util-is@1.0.3
isarray@0.0.1
readable-stream@1.1.14
string_decoder@0.10.31

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
inherits@2.0.4
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

4
All Dependencies CSV
β“˜ This is a list of readable-stream 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
core-util-is1.0.31.85 kBMIT
prod
inherits2.0.41.98 kBISC
prod
isarray0.0.12.68 kBMIT
prod
string_decoder0.10.313.52 kBMIT
prod

Visualizations

Frequently Asked Questions

What does readable-stream do?

Readable-stream is a Node.js package providing a mirror of the streams implementations in Node.js 18.16.0. It offers Node.js core streams for userland. This package is designed to provide a stable streams base regardless of the Node.js version you or the users of your libraries are using. Using readable-stream, you can avoid using the "stream" module in Node-core. It guarantees better stability and is recommended for use instead of "stream".

How do you use readable-stream?

The use of readable-stream in application development is straightforward. First, you have to install the package using npm as follows:

npm install readable-stream

Then you can replace your require('stream') with require('readable-stream') without any changes if you're only using one of the main classes and functions. Below is an example of how to use some of the main classes and functions:

const {
  Readable,
  Writable,
  Transform,
  Duplex,
  pipeline,
  finished
} = require('readable-stream')

If you're using readable-stream in browsers, you will need a bundler like browserify, webpack, parcel, or similar. It's also important to note that polyfills are no longer required since version 4.2.0.

Where are the readable-stream docs?

The full documentation of readable-stream can be found on the Node.js website. Here is the link to the documentation: https://nodejs.org/dist/v18.16.0/docs/api/stream.html. The documentation provides comprehensive information about the use and functionalities of readable-stream. It's recommended to review the documentation to fully understand how to implement readable-stream in your project.