Main public logs

Jump to navigation Jump to search

Combined display of all available logs of bibbleWiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 02:19, 31 July 2022 Iwiseman talk contribs created page Websockets (Created page with "=Simple JS example= ==Client== <syntaxhighlight lang="js"> <html> <body> <script> const ws = new WebSocket("ws://localhost:3100") ws.addEventListener("open", () => { console.log("We are connected") ws.send("hello everyone") }) ws.addEventListener("message", (e) => { console.log("We have data", e) }) </script> </body> </html> </syntaxhighl...")