delimit-stream
Push messages from a stream partitioned by the given delimiter
Last updated 12 years ago by jasonkuhrt .
BSD-2-Clause · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install delimit-stream 
SYNC missed versions from official npm registry.

delimit-stream Build Status Dependency Status NPM version

Push messages from a stream partitioned by the given delimiter

Install

npm install delimit-stream

Example

var DelimitStream = require('delimit-stream')
var net = require('net')

net.createServer(function(socket){
  var delimitStream = new DelimitStream('\r\n', { objectMode: true })
  socket
    .pipe(delimitStream)
    .on('data', function(message){
      console.log('Got message: %j', message)
    })
})

API

DelimitStream(delimiter, [options])

delimiter <String> The character(s) that define the delimiter. DelimitStream will push its buffer every time this delimiter is found in the stream

options <Object> The stream.Transform options. DelimitStream does not add any new options.

Run Tests

npm test

Current Tags

  • 0.1.0                                ...           latest (12 years ago)

2 Versions

  • 0.1.0                                ...           12 years ago
  • 0.0.1                                ...           13 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 1
Last Month 1
Dependencies (0)
None
Dev Dependencies (2)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |