@server-sent-stream/parser
This is the underlying parsing machinery for @server-sent-stream/web and @server-sent-stream/node. It operates on text data (bring your own decoder), and works in both Node and the browser.
Usage
- Class:
EventStreamParser
-
This is the parser itself. You provide it with chunks of text, and it'll call your provided callback every event that it parses.
-
Constructor (onEvent: (data: string, eventType: string, lastEventId: string) => void)
- Create a new parser, specifying the callback that'll be called for every event. The arguments passed in are the event data, the event type (
'message'
if the incoming event doesn't specify), and the last seen event ID.
-
push(chunk: string)
- Push a chunk of data to the parser. This may cause the
onEvent
callback to be called, possibly multiple times.
-
end()
- Indicate that the stream has ended and no more data will be sent.
Warning
Nothing in the event stream specification says anything about how the chunks will be split up! While the parser handles textual chunks being split at arbitrary points, they must still be valid Unicode. It's entirely possible that a chunk may be split within a multi-byte Unicode code point, and it's your responsibility to handle that properly.
For instance, the following code is very commonly used to parse event streams, and is subtly broken:
const response = await fetch('https://example.com/events', {body: '...'});
const reader = response.body.getReader();
while (true) {
const {done, value} = await reader.read();
if (done) break;
const textChunk = new TextDecoder().decode(value);
}
You need to use a decoding method that buffers partial Unicode data, like the TextDecoderStream
API:
const response = await fetch('https://example.com/events', {body: '...'});
const decoder = new TextDecoderStream();
response.body.pipeThrough(decoder);
const reader = response.body.getReader();
while (true) {
const {done, value} = await reader.read();
if (done) break;
}