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

Is there any really lightweight RESTful frameworks around that assumes its users to be not newbies?

I am looking for something that is based on the below criteria

  1. One that models resources ( for RESTful-ness )
  2. Object oriented ( not just for the sake of it )
  3. Not one that forces to use MVC
  4. No unnecessary fat ( strange database layers and ORMs )
  5. Pay for what I use ( nothing is automatic, but gives me means to make them automated )
  6. Sensible logging ( unlike kohana )
  7. Sensible configuration ( unlike kohana, not every techie is a PHP programmer )
share|improve this question
I asked a similar question some time ago: stackoverflow.com/questions/1967991/… – Pekka 웃 Aug 12 '10 at 9:32
I ended up with a different one that was named after a bottle or a beverage... Flask? Glass? Can't remember and can't look into the code right now. But if you come across it, it's worth a look :) – Pekka 웃 Aug 12 '10 at 9:53
1  
@pekka - looks like its Tonic – rickyduck Nov 26 '12 at 13:23
1  
@ricky that was it, thanks! – Pekka 웃 Nov 26 '12 at 13:25

5 Answers

up vote 13 down vote accepted

I would say Tonic, build with the excellent RMR Web Architecture article in mind, by the article's writer: Paul James.

I haven't tried it out myself, but it applies to most of your requirements:

  • Is the most RESTful framework I've seen; it treats every URL as a resource;
  • Applies RMR over MVC, since MVC does not really apply for the web (at least not in server-side scripting)
  • Is very light weight
share|improve this answer
2  
Good find ...! I very much liked the RMR concept; its very close to what I was looking for. To me it almost sounds like its a special case of MVC where the "Model" models the HTTP resource. – CodeMedic Oct 8 '10 at 22:49
It does tick quite a few boxes! Thanks Peter. – CodeMedic Oct 9 '10 at 8:02
1  
Glad I could help! – Peter Kruithof Oct 11 '10 at 11:45

I had to set up a simple REST interface recently, and I was able to get the Slim library working with several different routings in less than two hours. Very straightforward. Doesn't get any easier. I can't believe people would recommend installing Zend just to set up a REST interface. That's like hunting squirrel with a bazooka.

share|improve this answer
1  
Slim looks very promising; like the fact that the framework itself being very lean and let the programmer to get on with programming, rather than learning the various magic AKA quirks of the framework! – CodeMedic Aug 13 '12 at 9:11
1  
Do you have a link to the Slim library? – JPM Mar 20 at 22:44
1  
slimframework.com – Ringo Mar 21 at 17:17

If you need light and strong RESTful oriented framework you can try one of this:

Good Luck!

share|improve this answer
I have been doing a lot of functional programming with PHP recently, its a shame that frameworks like Slim doesn't get enough attention! It has a lot of potential! @corysus, +1 for mentioning Slim. – CodeMedic May 9 at 9:09

PHP Fat-Free Framework. The name alone is enough to let you know what it stands for.

share|improve this answer
Looks nice, but it has no focus on REST, has it? – Pekka 웃 Aug 12 '10 at 9:53
Routing is at the core, not an adjunct, unlike other frameworks. REST is a cinch with F3::map(). – stillstanding Aug 12 '10 at 9:56
1  
@hoohah the fat-free framework seems pretty good. but not that straight forward! But much better than a lot of them out there. – CodeMedic Aug 13 '10 at 22:33

May be MultiRPC will be good for you. It supports multiple call by one request and use encrypted and compressed protocol.

share|improve this answer
An RPC helper is far from being classified as a framework – stillstanding Oct 8 '10 at 17:44
2  
and RESTful service is not just about RPC or remote method invocation. – CodeMedic Oct 8 '10 at 22:11
1  
And thats why I wrote "May be" – SeniorDev Oct 8 '10 at 22:49
1  
Sorry @SeniorDev , "May be" doesn't help to make a bad answer any better. The question is about RESTful frameworks. RPC is for modeling procedures. If you try to model RESTful resources with RPC, it will most probably end up in a bad implementation. – rineez Sep 27 '12 at 5:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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