Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
64  
<rant>I don't know how many times now I've come to SO from Google, to the exact question I have (closed as not constructive) with a super-useful answer (link to a great tutorial, deleted by a mod with no explanation). I mean seriously -- right now the top result in Google for "node rest api" is this post, which SO mods have deemed not worthy enough to even be asked here. Folks, that's just silly. If you just HAVE to moderate something, there's wikipedia...</rant> – bmoeskau Jan 9 at 21:44
15  
Vote to re-open. We only need 4 more votes! – Richard Turner Jan 28 at 22:22
6  
Agreed - how is this not constructive? I've come here as the top result for "node rest framework" and the top answer is exactly what I want. Grrrr.... – Fergal Moran Feb 22 at 21:51
3  
Didn't you get the memo? SO is where Wikipedians go when they feel like being techie. They don't write code, they come here and edit. – L0j1k Mar 3 at 8:12
1  
This is a VERY important question. My answer (disclaimer: I am the author): github.com/mercmobily/JsonRestStores which seems to be exactly what the asker is after. (And many others who end up here) – Merc Mar 11 at 1:03
show 2 more comments

closed as not constructive by Bo Persson, animuson, Don Roby, Linger, Jens Björnhager Dec 8 '12 at 19:44

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

8 Answers

Check out Restify http://mcavage.github.com/node-restify/ - it's a well established and dedicated REST framework for node.js written by Mark Cavage https://github.com/mcavage who works at Joyent on NodeJS. This does everything you'll ever need to do with REST on Node, even including throttling.

share|improve this answer
This is what I was looking for. Thanks. – Jason Webb Feb 26 '12 at 3:06
2  
Very nice documentation! – matt_dev Jul 23 '12 at 3:43
This is exactly what i wanted. "closed as not constructive" meh... – Oliver Ridgway Jan 18 at 17:19
This is the best answer! – Pavel Nikolov Feb 19 at 17:45
Nice, Wonderful. no templating, no rendering, just pure API support. This is perfect!. Thanks to u and the author Mark Cavage. – bighostkim Mar 8 at 4:43
up vote 55 down vote accepted

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

share|improve this answer
16  
Make sure you also get the express-resource middleware: github.com/visionmedia/express-resource. It's what provides the super-easy resourceful routing. – Chris Jaynes Jul 27 '11 at 12:38
express would be my choice too. – Savino Sguera Sep 30 '11 at 14:52
3  
Express is a full blown web application framework from what I can tell. OP is interested in a rest framework. – chovy Sep 16 '12 at 6:42
1  
There's nothing wrong with the idea of a shared Web framework like express, to some in the HTTP services framework the need for separate web site and web services frameworks is nonsense. – Colin Jack Sep 30 '12 at 11:19

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.

share|improve this answer
3  
Here is a list of Node modules. Restler is the only one listed there. wiki.github.com/ry/node/modules – Grumdrig Jan 20 '10 at 6:32

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

share|improve this answer

Those looking for creating RESTful services may check out webservice.js by Marak Squires.

share|improve this answer
Shame that it's not more professional. – RobertPitt Feb 3 '12 at 22:09

try jest, it's an Object Oriented open source library that provides Rest services from mongoose models or just bare. It deals with pagination, authentication, authorization, validation, automatic documentation.

share|improve this answer

I'd recommend the Locomotive framework which has built in support for Restful routing. The routing system (and most other parts of the framework) are rails-inspired so if you are familiar with Rails, you will feel right at home.

The framework is quite simple and it is easy to get started in a matter of hours.

Here is a brief overview on how to implement a restful resource :

In config/routes.js : this.resources('photos');

The following routes are matched to corresponding methods (actions) in PhotosController (typically app/controllers/photos_controller.js):

GET     /photos           --> index
GET     /photos/new       --> new
POST    /photos           --> create
GET     /photos/:id       --> show
GET     /photos/:id/edit  --> edit
PUT     /photos/:id       --> update
DELETE  /photos/:id       --> destroy

Although the official documentation does not mention singular routes, they are supported too. In addition there are other niceties that you may find useful if you are working with a rest api eg. Helpers for restful paths and hassle-free support for multiple formats.

Considering it is built on top of Express you have the plethora of connect middleware at your disposal.

share|improve this answer

restmvc.js looks promising: https://github.com/keithnlarsen/restmvc.js I'm evaluating it my self

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.