papercats/README.md

45 lines
1.1 KiB
Markdown
Raw Normal View History

# Blockly.IO
2017-02-23 23:36:15 -05:00
2017-04-17 14:04:22 -04:00
This is a clone of the original Paper-IO released by Voodoo, except for one aspect. This will attempt to implement a multi-player aspect of the game (like a real IO game). Currently this has a playground at this [link](https://thekidofarcrania.github.io/BlocklyIO). It's a demo version of what to come. Hopefully by that time, the necessary server infrastructure could be obtained.
2017-02-23 23:38:52 -05:00
This is just a fun side-project for me. If you would want to use this code, it would be nice to let me know.
2017-02-26 19:26:22 -05:00
2019-01-15 10:42:15 -05:00
## Install
```bash
git clone https://github.com/stevenjoezhang/paper.io.git
cd paper.io
npm install
```
2017-02-26 19:26:22 -05:00
## Running
After cloning this repository, run the follow commands to install dependencies and set up server. Enjoy!
```bash
npm start
```
2019-01-15 10:42:15 -05:00
2019-01-16 03:57:36 -05:00
## Bots
```bash
node src/bot/paper-io-bot-mode.js ws://localhost:8081
```
2019-01-15 10:42:15 -05:00
## Build
```bash
sudo npm install -g browserify uglify-es
2019-01-16 03:57:36 -05:00
browserify client.js | uglifyjs > public/bundle.js
2019-01-15 10:42:15 -05:00
```
2017-12-29 01:58:33 -05:00
## License
This is licensed under MIT. As such, please provide due credit and link back to this repository if possible.
2019-01-16 03:57:36 -05:00
Original Repo:
- Author: theKidOfArcrania
- Link: https://github.com/theKidOfArcrania/BlocklyIO