8.6.0 • Published 4 months ago

@tsed/sse v8.6.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Build & Release PR Welcome npm version semantic-release code style: prettier github opencollective

A package of Ts.ED framework. See website: https://tsed.dev/tutorials/server-sent-events

Server-sent events let you push data to the client. It's a simple way to send data from the server to the client. The data is sent as a stream of messages, with an optional event name and id. It's a simple way to send data from the server to the client.

Installation

Before using the Server-sent events, we need to install the @tsed/sse module.

npm install --save @tsed/sse

Then add the following configuration in your Server:

import {Configuration} from "@tsed/di";
import "@tsed/sse"; // import sse Ts.ED module

@Configuration({
  acceptMimes: ["application/json", "text/event-stream"]
})
export class Server {}

::: warning There is a known issue with the compression middleware. The compression middleware should be disabled to work correctly with Server-sent events. :::

Features

  • Support decorator usage to enable event-stream on an endpoint,
  • Support Node.js stream like EventEmmiter to emit events from your controller to your consumer,
  • Support Observable from rxjs to emit events from your controller to your consumer.
  • Support @tsed/json-mapper to serialize your model before sending it to the client.
  • Gives an API compatible with Express.js and Koa.js.

Enable event-stream

To enable the event-stream on an endpoint, you need to use the @EventStream() decorator on a method of a controller.

import {Controller} from "@tsed/di";
import {Get} from "@tsed/schema";
import {EventStream, EventStreamCtx} from "@tsed/sse";

@Controller("/sse")
export class MyCtrl {
  @Get("/events")
  @EventStream()
  events(@EventStreamCtx() eventStream: EventStreamCtx) {
    let intervalId: ReturnType<typeof setInterval>;

    eventStream.on("close", () => {
      clearInterval(intervalId);
    });

    eventStream.on("end", () => {
      clearInterval(intervalId);
    });

    intervalId = setInterval(() => {
      // Ts.ED support Model serialization using json-mapper here
      eventStream.emit("event", new Date());
    }, 1000);
  }
}

Stream events

You can use Node.js stream like EventEmmiter to emit events from your controller to your consumer:

import {EventStream} from "@tsed/sse";
import {Controller} from "@tsed/di";
import {Get} from "@tsed/schema";

@Controller("/sse")
export class MyCtrl {
  private eventEmitter = new EventEmitter();

  $onInit() {
    setInterval(() => {
      this.eventEmitter.emit("message", new Date());
    }, 1000);
  }

  @Get("/events")
  @EventStream()
  events() {
    return this.eventEmitter;
  }
}

Observable

You can also use Observable from rxjs to emit events from your controller to your consumer:

import {EventStream} from "@tsed/sse";
import {Controller} from "@tsed/di";
import {Get} from "@tsed/schema";

@Controller("/sse")
export class MyCtrl {
  @Get("/events")
  @EventStream()
  events() {
    const observable = new Observable((observer) => {
      setInterval(() => {
        observer.next(new Date());
      }, 1000);
    });

    return observable;
  }
}

Documentation

See our documentation https://tsed.dev/api.html

Contributors

Backers

Thank you to all our backers! 🙏 [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

License

The MIT License (MIT)

Copyright (c) 2016 - today Romain Lenzotti

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

7.86.0

4 months ago

8.6.0

4 months ago

8.5.4

4 months ago

8.6.0-beta.1

4 months ago

8.5.3

4 months ago

8.5.2

5 months ago

8.5.1

5 months ago

7.85.5

5 months ago

8.5.0

5 months ago

7.85.4

5 months ago

8.4.5

6 months ago

8.4.4

6 months ago

8.4.7

5 months ago

8.4.6

6 months ago

8.5.0-beta.1

6 months ago

8.5.0-beta.2

6 months ago

7.85.3

6 months ago

8.4.1

6 months ago

8.4.3

6 months ago

8.4.2

6 months ago

7.85.2

6 months ago

8.4.0

7 months ago

8.3.6

7 months ago

8.3.5

7 months ago

7.85.1

7 months ago

8.3.4

7 months ago

8.3.3

7 months ago

8.3.0

7 months ago

8.3.2

7 months ago

8.3.1

7 months ago

7.85.0

7 months ago

8.2.0

7 months ago

8.0.5

8 months ago

8.0.7

8 months ago

8.0.6

8 months ago

8.1.0

8 months ago

8.0.4

8 months ago

8.0.1

8 months ago

8.0.0

8 months ago

8.0.3

8 months ago

8.0.2

8 months ago

8.0.0-rc.6

8 months ago

7.84.1

8 months ago

8.0.0-rc.4

8 months ago

8.0.0-rc.5

8 months ago

8.0.0-rc.3

8 months ago

8.0.0-rc.2

9 months ago

8.0.0-beta.11

9 months ago

8.0.0-rc.1

9 months ago

8.0.0-beta.8

9 months ago

8.0.0-beta.9

9 months ago

8.0.0-beta.10

9 months ago

7.84.0

9 months ago

8.0.0-beta.6

9 months ago

8.0.0-beta.7

9 months ago

7.83.4

9 months ago

8.0.0-alpha.9

10 months ago

7.83.3

10 months ago

7.83.2

10 months ago

8.0.0-alpha.7

10 months ago

8.0.0-alpha.8

10 months ago

8.0.0-beta.5

9 months ago

8.0.0-alpha.10

9 months ago

8.0.0-alpha.11

9 months ago

8.0.0-alpha.12

9 months ago

8.0.0-beta.2

9 months ago

8.0.0-beta.1

9 months ago

8.0.0-beta.4

9 months ago

8.0.0-beta.3

9 months ago

7.82.0

11 months ago

7.81.1

11 months ago

7.80.2

11 months ago

7.81.0

11 months ago

7.82.3

10 months ago

7.83.1

10 months ago

7.82.2

11 months ago

7.83.0

10 months ago

7.82.1

11 months ago

7.81.2

11 months ago

7.80.3

11 months ago

8.0.0-alpha.3

10 months ago

8.0.0-alpha.4

10 months ago

8.0.0-alpha.1

10 months ago

8.0.0-alpha.2

10 months ago

8.0.0-alpha.5

10 months ago

8.0.0-alpha.6

10 months ago

7.81.0-rc.1

11 months ago

7.81.0-rc.2

10 months ago

7.80.1

11 months ago

7.80.0

11 months ago

7.79.4

11 months ago

7.79.3

12 months ago

7.79.2

12 months ago

7.79.1

12 months ago

7.79.0

12 months ago