I assume you mean the standard HTTP methods? I agree... That would indeed be a no-starter if I'd left those out. :)
Check the docs at http://percolatorjs.com/documentation.html#server-route . They show the use of multiple methods on one resource. You can add others as well as you'd no doubt expect. This is different from express/sinatra in that I try to promote keeping every method of a single route together in a single place. This makes for better code organization and re-use, and lets the framework handle some HTTP errors more correctly. I still need to document better and make this stuff more obvious, so thanks for the feedback. G On Sun, Dec 16, 2012 at 12:11 PM, Tiger Nassau Inc < [email protected]> wrote: > Does not seem to use standard REST calls - that is a no start - needs to > be as simple as php slim, then would be really nice > Sent from my LG Mobile > > Scott Elcomb <[email protected]> wrote: > > >On Sun, Dec 16, 2012 at 1:38 PM, Gregg Caines <[email protected]> wrote: > >> Hey all... I've been working on a new framework for restful json apis > for a > >> while, and was wondering if anyone might be interested in taking a look, > >> giving feedback, etc. > >> > >> http://percolatorjs.com > > > >Is it fair to assume that percolatorjs is an implementation of your > >application/vnd.hyper+JSON draft at > ><http://caines.ca/blog/programming/hyperjson-a-first-draft/> ? > > > >-- > > Scott Elcomb > > @psema4 on Twitter / Identi.ca / Github & more > > > > Atomic OS: Self Contained Microsystems > > http://code.google.com/p/atomos/ > > > > Member of the Pirate Party of Canada > > http://www.pirateparty.ca/ > > > >-- > >Job Board: http://jobs.nodejs.org/ > >Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > >You received this message because you are subscribed to the Google > >Groups "nodejs" group. > >To post to this group, send email to [email protected] > >To unsubscribe from this group, send email to > >[email protected] > >For more options, visit this group at > >http://groups.google.com/group/nodejs?hl=en?hl=en > > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
