fastify-socket.io
TypeScript icon, indicating that this package has built-in type declarations

5.0.0 • Public • Published

fastify-socket.io

CI workflow

fastify-socket.io enables the use of Socket.io in a Fastify application.

Supports Fastify versions 4.x

Install

npm i fastify-socket.io socket.io

Usage

Require fastify-socket.io and register it as any other plugin, it will add a io decorator.

const fastify = require("fastify")();

fastify.register(require("fastify-socket.io"), {
  // put your options here
});

fastify.get("/", (req, reply) => {
  fastify.io.emit("hello");
});

fastify.listen({ port: 3000 });

For more details see examples

You can use it as is without passing any option, or you can configure it as explained by Socket.io doc.

Hook

The plugin also adds an onClose hook which closes the socket server when the fastify instance is closed.

Typescript

The io decorator is NOT typed.

This is necessary to allow, eventually, the developer to be able to define custom types and make use of the socket.io new types system (doc).

For more info see the example

Acknowledgements

The code is a port for Fastify of socket.io.

License

Licensed under MIT.
socket.io license

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 5.0.0
    5,702
    • latest
  • 4.0.0-1
    4
    • next

Version History

Package Sidebar

Install

npm i fastify-socket.io

Weekly Downloads

16,808

Version

5.0.0

License

none

Unpacked Size

6.97 kB

Total Files

6

Last publish

Collaborators

  • alemagio