feathers
feathers copied to clipboard
The API and real-time application framework
We are trying to migrate to v4. But now we are failing because we have no clue how to setup a custom auth (api-key) strategy. In v3 we registered our...
It's more of a feature request to feathers-client rather than an issue. Currently, in my project, I'm trying to repeat requests when the request times out or gets rate-limited. I...
The new AsyncLocalStorage API, introduced with Nodejs 13.10.0, is a great tool for improving logging, security and other aspects of the framework. It can be used, for example, to store...
I'm looking to change the response of the Feathers error handler for an erroneous socket request. Adding a handler to apps.hooks.js works for sockets if the service exists and there...
### Steps to reproduce ```js const app = express(feathers()); // app setup abridged const credentials = {email: '[email protected]', password: 'supersecret'}; app.service('api/users').create(credentials).then((user) => { console.log('credentials is', credentials); console.log('user is', user); });...
I want to have three login strategies which could generate token with different expired time: - Employee for 1 week - Visitor for 1 hour - Manager forever I failed...
This is neither a bug nor a feature request. I read that the authentication system is refactored for the next release and wonder whether this will address my use case:...
There isn't still a proper documentation or tutorial on how to break feathers services into microservices, and there has been many request for this. My team is working with feathers...
I'm trying to find a practical/recommend way to extract services, separating them into their own instances, following microservices-style. In this matter, there is an interesting statement on the landing page...
@daffl already closed https://github.com/feathersjs/feathers/issues/121 around the implementation of this and provided a toy example but we need proper documentation around this. One possibility is to show how you can scale...