Added wrapper

This commit is contained in:
Carlos
2020-12-12 13:52:36 +01:00
parent 383b0e3420
commit 7609179e24
4 changed files with 214 additions and 2 deletions

13
API_js/demo.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<script src="WebConsoleAPI.js"></script>
<script src="WebConsoleConnector.js"></script>
</head>
<body>
<h1>API demo</h1>
<p>Open your console (F12) and type: var webconsoleapi = new WebConsoleAPI("ws://localhost:8080");</p>
<p>Replace ws:// with wss:// if your server have SSL enabled, localhost with your server IP and 8080 with your port.</p>
<p>Then call login(pwd) to login, sendConsoleCmd(cmd) to execute a command, etc...</p>
</body>
</html>