diff --git a/front end/index.html b/front end/index.html new file mode 100644 index 0000000..9e440b7 --- /dev/null +++ b/front end/index.html @@ -0,0 +1,97 @@ + + + Block Battle Beta + + + + +
+
+ Canvas tag not supported +
+
+ + + + + + + \ No newline at end of file diff --git a/server/server.js b/server/server.js new file mode 100644 index 0000000..11bed20 --- /dev/null +++ b/server/server.js @@ -0,0 +1,24 @@ +/** + * Main server file which handles users + * + * @author Jeffery Russell + * 2-22-18 + */ + +const app = require('express')(); +const http = require('http').Server(app); +const io = require('socket.io')(http); + +const PORT = 3000; + +var players + +io.on('connection', function(socket) +{ + +}; + +http.listen(PORT, function() +{ + console.log('listening on *:3000'); +});