Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 459 Bytes

File metadata and controls

25 lines (16 loc) · 459 Bytes

CSGO/CS2 Gamestate Integration Listener

CSGO/CS2 Gamestate Integration Listener

How to Use

Install

pnpm install https://github.com/853Lab/CS2-Gamestate-Integration-Listener.git

Import

import { ListenServer } from "cs2-gamestate-integration-listener/main";

const listenServer = new ListenServer();

listenServer.on("message", (response) => {
  console.log("getdata", response);
});

listenServer.Start();