Beau Shaw
Beau Shaw
Thanks @paulhibbitts. I built a proof of concept that can be seen here: https://github.com/DaddyWarbucks/remote-docsify The initial reason I thought about this for the Feathers.js ecosystem. Feathers has a core docs...
Of course you are welcome to use it! 1. I am not sure what you mean about the "linked" content? The `basePath` being used is: https://raw.githubusercontent.com/feathersjs-ecosystem/feathers-sequelize/master So the whole full...
Ahhh. Yea. I defaulted some settings to use some Feathers default settings because it was a POC for the Feathers community and my intention was to potentially move it to...
Related: https://github.com/feathersjs/feathers/issues/1881
Just throwing this in here as a potential way to handle this pre v5. I typed this out in response to another issue asking about setting up NewRelic and passing...
I have been thinking about this for a few years now and have come up with some other vanilla feathers solutions as well. For example. ```js // Extend classes or...
A quick update on my latest iteration of this and also including a `ContextLoader` from https://github.com/feathersjs-ecosystem/batch-loader/issues/18 and an example for @1valdis. ```js // app.hooks.js const { AsyncLocalStorage } = require('async_hooks');...
This can be solved using [feathers-schema](https://github.com/feathersjs/feathers/tree/dove/packages/schema) and its `queryProperty` helper function.
@dryna You can try to use ```js const skippable = (hookName, hookFunc) => { return context => { if (context.params.skipHooks) { const { type } = context; const { skipHooks...
This seems odd that using `arrayLimit ` does not solve this. That seems like a bug with `qs`. Weird. This problem definitely comes into play when using `feathers-dataloader` from the...