feathers icon indicating copy to clipboard operation
feathers copied to clipboard

The API and real-time application framework

Results 246 feathers issues
Sort by recently updated
recently updated
newest added

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...

Documentation
Authentication

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...

Feature
Client

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...

Feature
Transport

### 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:...

Authentication

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...

Documentation
Question
Scaling

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...

Documentation
Question
Scaling

@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...

Documentation
Scaling