Giter Site home page Giter Site logo

consume-until's Introduction

consume-until

Consume a stream until a given pattern is found.

Build status js-standard-style

Installation

npm install consume-until --save

Usage

var net = require('net')
var consumeUntil = require('consume-until')

var socket = net.connect({ host: 'example.com', port: 80 })

socket.write('GET / HTTP/1.1\r\n')
socket.write('Host: example.com\r\n')
socket.write('\r\n')

consumeUntil(socket, '\r\n\r\n', function (err, headers) {
  if (err) throw err

  console.log('HTTP response headers:')
  console.log(headers)
  
  console.log('HTTP response body:')
  socket.pipe(process.stdout)
})

API

consumeUntil(stream, pattern, callback)

The module exposes a single function which takes 3 arguments:

  • stream - The stream to consume
  • pattern - Either a string or a buffer containing the pattern to look for in the stream
  • callback - The callback will be called when the pattern is detected. The data consumed up until the pattern will be given as the second argument. An error is given as the first argument if the stream either ends before the pattern is found or emits an error

License

MIT

consume-until's People

Contributors

watson avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.