Kevin Swiber

Results 16 issues of Kevin Swiber

Harmony proxies would be awesome here, but we can't use them yet. Because the model-based approach requires mapping of properties to the backing data store, we can use that information...

Cache compiled output from queries. Prepared statements with parameters should be cached sans-params.

Right now, only OpenAPI 3.0.3 is supported. It will likely require a major refactor to prevent duplicating logic and also a breaking change to the API. Definitely something to include...

enhancement

Because people are still using cookies with APIs, y'all.

enhancement

Example: ``` javascript var pipeworks = require('pipeworks'); var a = pipeworks() .fit(function(next) { console.log('a'); next(); }); var b = pipeworks() .fit(function(next) { console.log('b'); next(); }); var c = function(next) {...