You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
620 B
28 lines
620 B
import chalk from 'chalk';
|
|
import { Server } from 'socket.io';
|
|
|
|
export class ServerSocket {
|
|
private io!: Server;
|
|
|
|
constructor(private path: string, private port: number) {
|
|
this.initSocket();
|
|
this.connStatus();
|
|
}
|
|
|
|
private initSocket() {
|
|
this.io = new Server(this.port, {
|
|
path: this.path,
|
|
});
|
|
console.log(chalk.yellow('Initialized server...'));
|
|
}
|
|
|
|
private connStatus() {
|
|
this.io.on('connect', (socket) => {
|
|
console.log(chalk.magenta('Client connected!'));
|
|
|
|
socket.on('disconnect', () => {
|
|
console.log(chalk.red('Client disconected!'));
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|