Have you ever wondered what the hype around Node.js is all about, but just never found the time to dig in and understand it? Or have you started with Node.js, but just can't figure out how to get from API docs to a working program?

At this all-day event, you will attend several hands-on workshops that will guide you from setting up a local development environment all the way to deploying your very own real-time game to the web.

Sold out in 5 days! We are looking into options to add more spots – get on the waitlist!

Register Now

Let us know where you want the next Node.js Camp to be.

Fill out the form

Node.js Camp Homework: How to Get Ready

1. Install Node on your laptop.

Instructions here.

Pick one of the install methods in this gist.

2. Explore creationix's Game Code

npm install connect socket.io

Attempt to run it locally.

3. Get WebOS emulator running on your laptop

Instructions here.

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