UNPKG

gameguard

Version:

GameGuard is a NodeJS game server that can be used to manage the players connecting to your game, manage rooms and the players in them, and more.

20 lines (17 loc) 419 B
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title></title> <style> canvas { background: #eee; } </style> </head> <body> <canvas id="myCanvas" width="480" height="320"></canvas> <script type="module" src="./breakout.js"></script> </body> </html>