├── README.markdown ├── body.html ├── css └── lobby.css ├── header.html ├── index.js ├── js └── lobby.js └── lobby.js /README.markdown: -------------------------------------------------------------------------------- 1 | nodeFacebookExample 2 | =================== 3 | 4 | Simple Facebook App example using [nodejs](http://nodejs.org/) and [socket.io](http://socket.io/). 5 | 6 | You can send comments, patches, questions [here on github](https://github.com/ErikDubbelboer/nodeFacebookExample/issues) or to erik@dubbelboer.com. 7 | 8 | 9 | Usage 10 | ===== 11 | 12 | Don't forget to replace the following strings: 13 | 14 | * YOUR APP SECRET HERE 15 | * YOUR APPLICATION ID HERE 16 | * SOME RANDOM KEY HERE 17 | -------------------------------------------------------------------------------- /body.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |