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?
|
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.
|
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. |
|||||||||||||
|
|
For future people looking at this, there's a framework called Express that seems to fit the bill. http://wiki.github.com/visionmedia/express |
|||||||||||||||
|
|
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. |
|||||
|
|
Those looking for creating RESTful services may check out webservice.js by Marak Squires. |
|||
|
|
|
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 The following routes are matched to corresponding methods (actions) in PhotosController (typically app/controllers/photos_controller.js):
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. |
|||
|
|
|
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. |
|||
|
|
|
restmvc.js looks promising: https://github.com/keithnlarsen/restmvc.js I'm evaluating it my self |
|||
|
|