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

Hi It is not clear to me how to approach many-to-many / join tables in Dove (v5). I can create a service for each, but that doesn't seem optimal since...

I'm new to FeathersJs. One of my projects I'm currently working on is using FeathersJs, however I noticed that it's taking long (usually around 5 seconds) to login. Upon debugging...

I would like to use feathersjs (rest and socket.io) with nuxt 3. The client side is no problem with @marshallswain awesome [feathers-pinia](https://github.com/marshallswain/feathers-pinia) library. I would like to implement the server...

### Steps to reproduce 1) Get feathers-chat sample app https://github.com/feathersjs/feathers-chat 2) Try using github oauth or google oauth (I've tested both) 3) The oauth page of the provider opens, the...

Hello, ### Steps to reproduce Create a simple service : info.service.js ``` import Info from './info.class'; import hooks from './info.hooks'; export default function (app) { app.use( '/v1/info', new Info({}, app)...

I could achieve this on FeathersJS v4 using this code: ``` const { Test } = require('./test.class'); app.use( '/test', (req, res, next) => { res.data = 'Step 1 worked' next()...

When trying to setup a https server on FeathersJS v5 (Dove) using Express I'm getting an error, can someone please help me here, thanks! ``` const httpsServer = https.createServer(credentials, app));...

### Steps to reproduce 1. Generate an app through `npm create` 2. Pick TypeScript, Koa, TypeBox, and SQLite when prompted 3. Open `package.json` and look for the `scripts` key 4....

### Steps to reproduce [Discord discussion](https://discord.com/channels/509848480760725514/1212264370470527017) https://codesandbox.io/p/devbox/feathers-custom-service-hooks-8m28r3?file=%2Fsrc%2Fapp.ts%3A27%2C22 export const customMethods = ['enabledMethod'] as const ... //BEFORE ALL is called with this app.service('custom').enabledMethod() //But not this app.service('custom').notEnabledMethod() ### Expected behavior Ideally...

- import from lodash submodules directly where possible - use `const { provider, ...rest } = params` instead of `omit` - use `{ ...params, query: { ...params.query, provider } }`...