Location
Mission Bay Conference Center at UCSF
1675 Owens Street
San Francisco, CA 94143-3008
Links
Watch the videos
Facebook photo page
Twitter Buzz
Node.js Camp Homework: How to Get Ready
1. Install Node on your laptop.
Pick one of the install methods in this gist.
2. Explore creationix's Game Code
npm install connect socket.io
3. Get WebOS emulator running on your laptop
4. Install node-redis and redis
# start the redis server
wget http://redis.googlecode.com/files/redis-2.0.4.tar.gz
tar -zxf redis-2.0.4.tar.gz
cd redis-2.0.4
make
./redis-server
# install the node library:
npm install redis hiredis
