4.3.1 • Published 3 years ago

@sugoi/socket v4.3.1

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

@Sugoi\socket

Sugoi logo

npm version Build Status codecov

Introduction

SugoiJS is a minimal modular framework.

SugoiJS gives you the ability to use only what you need and do it fast.

this is a standalone module that can be functional on its own (as all of the SugoiJS modules).

The SugoiJS socket module uses the socket.io.

Installation

npm install --save @sugoi/socket

Bootstrapping

Bootstrapping done by:

import {SocketHandler} from "@sugoi/socket";

// serverInstance is express\koa instance
// in case you are using @socket\server, the instance returns from the 'listen' method
SocketHandler.init(serverInstance);

Socket Options

Init socket server with:

namespace - assign different endpoint to the socket server, more info on socket.io documentation

socketOptions - the socket server configurations

SocketHandler.init(serverInstance, socketConfig: SocketIOStatic.ServerOptions, namespace: string): SocketIOStatic.Server

The socketOptions variable interface is the same as on socket.io documentation

 socketOptions:{
      path: string,
      serveClient: boolean,
      adapter:Adapter,
      origins:string,
      parser:Parser
 }

Listen to events

SugoiJS socket module provides you the @SocketOn(event:string, namespace:string) decorator.

This decorator registers the callback for an event.

Example:

// SocketOn(event: string, namespace: string = "/", ...middlewares:Array<ISocketMiddleware>) {
@SocketOn('message',"/",(socket,data)=>{
    console.log("log message data: %s from socket id: %s",data,socket.id);
})
function(data,socket){
    socket.to(data.room).emit('message',data.message)
}

You can use as many decorators as you want.

Get instance

For getting the socketIO server instance, use the getServer() method of the SocketHandler instance method.

const io:SocketIOStatic.Server = SocketHandler.getHandler().getServer();

Documentation

You can find further information on Sugoi official website

4.3.1

3 years ago

4.3.0

3 years ago

4.2.0

3 years ago

4.1.1

5 years ago

4.1.0

5 years ago

4.0.3

5 years ago

4.0.2

5 years ago

4.0.1

5 years ago

4.0.0

5 years ago

3.2.0

5 years ago

3.1.4

5 years ago

3.1.3

5 years ago

3.1.2

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago

3.0.0

5 years ago

2.0.0

6 years ago

1.2.2

6 years ago

1.2.1-b7

6 years ago

1.2.1-b6

6 years ago

1.2.1-b5

6 years ago

1.2.1-b4

6 years ago

1.2.1-b3

6 years ago

1.2.1-b2

6 years ago

1.2.1-b1

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.1

6 years ago