We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27d918 commit 809bb6fCopy full SHA for 809bb6f
readme.md
@@ -52,9 +52,9 @@ import { CommandSocket } from "@command-socket/browser-client";
52
// OR
53
import { CommandSocket } from "@command-socket/node-client";
54
55
-const serverPort: number = 3849;
56
-const serverIP: string = "4.3.2.1";
57
-const wsAddress: string = "ws://" + serverIP + ":" + serverPort;
+let serverPort: number = 3849;
+let serverIP: string = "4.3.2.1";
+let wsAddress: string = "ws://" + serverIP + ":" + serverPort;
58
59
let client: CommandSocket = new CommandSocket(wsAddress);
60
```
0 commit comments