windhamdavid 9 years ago
parent
commit
d8a756f228
2 changed files with 19 additions and 31 deletions
  1. 11 24
      README.md
  2. 8 7
      package.json

+ 11 - 24
README.md

@@ -1,27 +1,14 @@
-Reti Chess
-==========
+###Chess-IO
+===
+my fork of [Reti-Chess](https://github.com/
+romanmatiasko/reti-chess)
 
-Reti Chess is an open source chess app built in [Node.js](http://nodejs.org/) with use of [Express framework](http://expressjs.com/) and [Socket.IO](http://socket.io/). Reti Chess also uses [chess.js](https://github.com/jhlywa/chess.js) for move validation and check/mate/draw detection.
+```sh  
+npm install  
+node server.js  
+localhost:3000
+```
 
-You can check out demo on [www.retichess.com](http://wwww.retichess.com/)
+#####Built With
 
-Why Reti?
----------
-
-The project is named after famous Czechoslovakian chess player Richard Réti. After him is also named a chess opening which begins with the the moves: 1. Nf3 d5, 2. d4.
-
-What features chess supports?
------------------------------
-
-This is a lightweight version of chess. You can only play real-time against the human, an AI is not available. Reti Chess supports simple chat and also timer. You can set timer up to 50 minutes with increment of max 50 seconds per side. If you reload the window or disconnect from the game, the game will be cancelled.
-
-
-People behind this project
---------------------------
-
-[Roman Matiasko](http://github.com/romanmatiasko/), [Stepan Bujnak](http://github.com/stepanbujnak/) and [Lukas Matiasko](http://github.com/lukasmatiasko/).
-
-License
--------
-
-Available under [the MIT License (MIT)](http://opensource.org/licenses/MIT).
+[Node.js](http://nodejs.org/) | [Express](http://expressjs.com/) | [Socket.IO](http://socket.io/) | [Chess.js](https://github.com/jhlywa/chess.js) 

+ 8 - 7
package.json

@@ -1,16 +1,17 @@
 {
-  "name": "retichess",
-  "version": "0.2.1",
+  "name": "chess-io",
+  "version": "0.0.1",
   "scripts": {
     "start": "node server.js"
   },
   "dependencies": {
-    "express": "~3.3.0",
-    "jade": "~0.28.2",
-    "socket.io": "~0.9.16",
-    "winston": "~0.7.3"
+    "express": "~4.x",
+    "jade": "~1.8.x",
+    "socket.io": "~1.2.x",
+    "winston": "~0.8.x,",
+	"twilio": "~1.10.x"
   },
   "engines": {
-    "node": ">=0.8.x"
+    "node": ">=0.10.x"
   }
 }