-
Notifications
You must be signed in to change notification settings - Fork 1
/
coffee-canvas-tetris
54 lines (38 loc) · 1.23 KB
/
coffee-canvas-tetris
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[Project Name]
coffee-canvas-tetris
[Project Description]
Tetris written in CoffeeScript, using HTML5 Canvas
[Leader Name + GitHub ID]
Russ S., russplaysguitar
[GitHub Link]
https://github.com/ChicoTeam/coffee-canvas-tetris
[Dependencies]
- Python 2.4+
- libssl-dev
- Curl
- NodeJS
- NPM (Node package manager)
- CoffeeScript (a Node package)
[Installation Steps]
For Linux:
1. Install python via synaptic
2. Install libssl-dev via synaptic
3. Install curl via synaptic
4. Install NodeJS...
Follow Step 3A: https://github.com/joyent/node/wiki/Installation
Notes: Paste each line into your command line individually. IMPORTANT: Don't use any other installation method (such as binaries, etc).
5. Install NPM...
curl http://npmjs.org/install.sh | sh
6. Install CoffeeScript...
npm install -g coffee-script
7. Clone the Git repo and get into that directory...
git clone [email protected]:ChicoTeam/coffee-canvas-tetris.git
cd coffee-canvas-tetris
8. Compile...
./compiler.sh
(this will start a process that automatically re-compiles whenever tetris.coffee is changed)
[Steps to Run]
1. Open coffee-canvas-tetris/index.html
[Language/Framework References and Guides]
- CoffeeScript: http://jashkenas.github.com/coffee-script/
(click "Try CoffeeScript")