1
0

Initial commit

This commit is contained in:
2026-06-30 00:30:34 +02:00
commit d7c4bc16f4
9 changed files with 503 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
@echo off
title "NodeJS WebSocket Test Server"
rem Get run mode or set default if nothing was provided
set /p mode="Enter mode (custom / twitch) [default: custom]: "
if "%mode%"=="" set mode=custom
rem Get target information or set default if nothing was provided
set /p target="Enter target (custom url / twitch channel): "
if "%target%"=="" if "%mode%"=="custom" set target=wss://echo.websocket.org
rem Execute the script with given information
node index.js %mode% %target%