nodePong/README.md

44 lines
828 B
Markdown
Raw Permalink Normal View History

2016-02-10 11:55:20 +01:00
# **nodePong**
nodePong is a multiplayer online Pong game based on socket.io and nodejs.
Users can play or spectate games.
2016-02-10 08:57:27 +01:00
2016-02-10 11:34:48 +01:00
# Install
2016-02-10 11:47:45 +01:00
clone project from git
2016-02-10 11:34:48 +01:00
```
git clone https://git.tetalab.org/frtk/nodePong.git
2016-02-10 11:47:45 +01:00
```
2016-02-10 11:55:20 +01:00
The app has a few nodejs packages dependencies. If you want to install them manually, follow the instructions below, else use the "node_modules" directory from the cloned project.
2016-02-10 11:47:45 +01:00
```
cd nodePong
npm install fs
npm install express
npm install http
npm install socket.io
```
# Parameters
2016-02-10 14:14:43 +01:00
- Server side: Parameters can be tweaked from "nodePong/server/server_config.js"
2016-02-10 11:55:20 +01:00
- *port* : http and iostream services port (default: 8042)
2016-02-10 11:58:30 +01:00
- ...
2016-02-10 11:47:45 +01:00
2016-02-10 14:14:43 +01:00
- Client side: Parameters can be tweaked from "nodePong/client/ui/client_config.js"
2016-02-10 11:58:30 +01:00
- ...
2016-02-10 11:47:45 +01:00
2016-02-10 11:58:30 +01:00
2016-02-10 11:47:45 +01:00
# Run
From the nodePong directory,
```
nodejs nodePong.js
2016-02-10 11:34:48 +01:00
```