Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 773 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 773 Bytes

SseStream

A node stream for writing Server-Sent Events

Installation

npm install ssestream

Or:

yarn add ssestream

Usage

In a (req, res) handler for a request event, Express #get route or similar:

const SseStream = require('ssestream')
const customHeaders = {'Cache-Control': 'no-cache, no-transform'} // optional

function (req, res) {
  const sse = new SseStream(req)
  sse.pipe(res, undefined, customHeaders)
  
  const message = {
    data: 'hello\nworld',
  }
  sse.write(message)
}

Properties on message:

  • data (String or object, which gets turned into JSON)
  • event
  • id
  • retry
  • comment