percolator icon indicating copy to clipboard operation
percolator copied to clipboard

Percolator is a framework for quickly and easily building quality HTTP APIs in Node.js

Results 32 percolator issues
Sort by recently updated
recently updated
newest added

Hi, Im kind of interested in trying out percolator and have also followed the discussions in [Sire issue-15](https://github.com/kevinswiber/siren/issues/15). However, I see that no commits has been done for almost a...

In some situations it would be very useful to have a custom payload returned when authentication fails. However, it seems that this isn't possible to achieve. The obvious way of...

Fixes the bug when calling res.collection(items, listOptions) instead of res.collection(items, listOptions.key) Fixes a bug (link not generated) when the value of the key given is a falsy value Incorporates the...

This patch allows listOptions.key to be provided to CRUDCollections list() function without it generating buggy output. New option listOptions.listAsKeyedObject enables listOptions.key to be optionally passed to HyperJsonCollection collection() function, switching...

Is it possible to add additional methods to the handler object? An example would be PATCH, LINK, UNLINK, etc... If this is already possible, then the documentation should be updated.

Exporting a CRUDCollection from a route defined using server.routeDirectory should automatically create both endpoints that CRUDCollections make. That is, it should also create the wildcard. I have no problems implementing...

The docs are incorrect in a few spots: - Occasional references to exporting a CRUDCollection 'member' property (should be 'wildcard'). - CRUDCollection 'update' docs describe the 'obj' callback parameter as...

In a route like this, in CrudCollection, I can't seem to get the id. /user/trees/1/leaves How do I get the number 1? I registered the route like /user/trees/:id/leaves

Just wondering if there is an option to have a single authentication block for crudcollection like in the server.route blocks?