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

stringstream

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stringstream - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1

stringstream.js

4

package.json
{
"name": "stringstream",
"version": "0.0.0",
"description": "Encode and decode data streams into string streams",
"version": "0.0.1",
"description": "Encode and decode streams into string streams",
"main": "stringstream.js",

@@ -6,0 +6,0 @@ "scripts": {

@@ -1,2 +0,35 @@

# Encode and decode streams into string streams (aka encoding the right
way)
# Decode streams into strings The Right Way(tm)
```javascript
fs = require('fs')
zlib = require('zlib')
strs = require('stringstream')
var stream = fs.createReadStream('massiveLogFile.gz')
.pipe(zlib.createGunzip())
.pipe(strs('utf8'))
```
No need to deal with `setEncoding()` weirdness, just compose streams
like they were supposed to be!
Handles input and output encoding:
```javascript
// Stream from utf8 to hex to base64... Why not ay.
fs.createReadStream('myFile').pipe(strs('utf8', 'hex')).pipe(strs('hex', 'base64'))
```
Also deals with `base64` output correctly by aligning each emitted data
chunk so that there are no dangling `=` characters:
```javascript
var stream = fs.createReadStream('massiveLogFile.gz').pipe(strs('base64'))
var fileStr = ''
stream.on('data', function(data) { fileStr += data })
stream.on('end', function() {
console.log('My base64 encoded file is: ' + fileStr)
})
```
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