views:

266

answers:

3

Just got node.js running on an ubuntu server instance. Got a couple of simple server apps running. Does anyone know of any REST frameworks that have been built or are in development?

+2  A: 

Picard's use of HTTP verbs for request routing is suggestive of REST, but I don't know of any REST frameworks per se. Most that I've seen so far have a Django/Rails style.

Restler is a node.js REST client if that's what you're looking for.

Michael Greene
Here is a list of Node modules. Restler is the only one listed there.http://wiki.github.com/ry/node/modules
Grumdrig
+3  A: 

For future people looking at this, there's a framework called Express that seems to fit the bill. http://wiki.github.com/visionmedia/express

Geuis
A: 

If your service is JSON-only, journey looks very promising as well.

PartlyCloudy