Game server for the js13kGames Competition.
Download the skeleton.
Extract the files and install the third party libraries with npm
.
npm install
You can run the server locally with the following command:
npm start
You can reach the test server at http://localhost:3000
All your code must be in the public
folder. Put your server side code into
the server.js
file. The shared.js
file is loaded at the begining of the
server.js
file. You can also use this code on the client side.
public
folder.Sandbox server
Package size still below 13 kB
Sandboxed environment
Do not leak the sandbox
procfile
and the index.js
file.Socket.io client lib
<script src="https://github.com/Cypher1/13k_lost/raw/master/socket.io/socket.io.js"></script>
to your HTML and that will be loaded. No server configuration will be needed. The sandbox already did it.Can I test the sandbox before submitting?
Is there any example? How do I develop my game using the sandbox server?
I have more questions!
Can I minify the server side code?
Can I add more npm packages?
What files count in the 13kb limit?
public
folder.Can I deploy new code after I submited the entry?
Can I modify the procfile
or the index.js
file?