Socket
Socket
Sign inDemoInstall

memory-stream

Package Overview
Dependencies
5
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.1 to 0.0.2

8

package.json
{
"name": "memory-stream",
"version": "0.0.1",
"version": "0.0.2",
"description": "Node.js streams implementation for buffered memory writes",

@@ -11,3 +11,3 @@ "main": "index.js",

"type": "git",
"url": "git://github.com/tommydudebreaux/memory-stream.git"
"url": "git://github.com/tommymessbauer/memory-stream.git"
},

@@ -22,5 +22,5 @@ "keywords": [

"bugs": {
"url": "https://github.com/tommydudebreaux/memory-stream/issues"
"url": "https://github.com/tommymessbauer/memory-stream/issues"
},
"homepage": "https://github.com/tommydudebreaux/memory-stream",
"homepage": "https://github.com/tommymessbauer/memory-stream",
"dependencies": {

@@ -27,0 +27,0 @@ "readable-stream": "~1.0.26-2"

@@ -5,1 +5,17 @@ memory-stream

Node.js streams implementation for buffered memory writes.
# Usage
```javascript
var fs = require('fs');
var MemoryStream = require('memory-stream');
var rs = fs.createReadStream('source.txt');
var ws = new MemoryStream();
ws.on('finish', function() {
console.log(ws.toString());
});
rs.pipe(ws);
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc