1.1.31 • Published 2 months ago

@cimo/websocket v1.1.31

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

Websocket

Websocket (server/client). Light, fast and secure. Write with native Typescript code and no dependencies is used.

Pack

  1. npm run pack
  2. Copy the file "cimo-websocket-x.x.x.tgz" in the project root folder.
  3. In the "package.json" file insert: "@cimo/websocket": "file:cimo-websocket-x.x.x.tgz"

Publish

  1. npm run build
  2. npm login --auth-type=legacy
  3. npm publish --auth-type=legacy --access public

Installation

  1. Link for npm package -> https://www.npmjs.com/package/@cimo/websocket

Server - Example with "NodeJs Express"

  • Server.ts
...

import { CwsServer } from "@cimo/websocket";

// Source
import * as ControllerTest from "../controller/Test";

...

const cwsServer = new CwsServer(server, "secret-key");

ControllerTester.websocket(cwsServer);

...
  • ControllerTester.ts
...

import { CwsServer } from "@cimo/websocket";

...

export const websocket = (cwsServer: CwsServer, cp: Cp) => {
    cwsServer.receiveData("action_test", (clientId, data) => {
        if (typeof data === "string") {
            const requestWsData = { test: "end" } as Record<string, string>;
            cwsServer.sendData(clientId, 1, JSON.stringify(requestWsData), "action_test");
        }
    });
};

...

Client

  • Index.ts
...

import CwsClient from "@cimo/websocket/dist/client/Service";

...

const cwsClient = new CwsClient("wss://localhost");

cwsClient.checkConnection(() => {
    cwsClient.receiveData("action_test", (data) => {
        if (typeof data === "string") {
            const responseWsData = JSON.parse(data) as Record<string, string>;

            console.log(responseWsData);
        }
    });
});

elementButton.addEventListener("click", (event) => {
    const requestWsData = { test: "start" } as Record<string, string>;
    cwsClient.sendData(1, JSON.stringify(requestWsData), "action_test");
});

...
1.1.31

2 months ago

1.1.30

2 months ago

1.1.29

2 months ago

1.1.28

2 months ago

1.1.27

3 months ago

1.1.26

3 months ago

1.1.25

3 months ago

1.1.24

6 months ago

1.1.23

7 months ago

1.1.22

7 months ago

1.1.21

7 months ago

1.1.20

7 months ago

1.1.19

7 months ago

1.1.18

7 months ago

1.1.17

7 months ago

1.1.16

7 months ago

1.0.16

7 months ago

1.0.15

7 months ago

1.0.14

7 months ago

1.0.13

7 months ago

1.0.12

8 months ago

1.0.11

8 months ago

1.0.10

8 months ago

1.0.9

8 months ago

1.0.8

8 months ago

1.0.7

8 months ago

1.0.6

8 months ago

1.0.5

8 months ago

1.0.4

8 months ago

1.0.2

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago