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, I'm looking to support HEAD requests. I don't see any mapping to support them as a "service method". But I see that express call the GET ones if no...

In the [Quick Start](https://docs.feathersjs.com/guides/basics/starting.html) the following example is given for TypeScript ```typescript const main = async () => { // Create a new message on our message service await app.service('messages').create({...

TypeScript

``` $ npm install -g @feathersjs/cli $ mkdir my-new-app $ cd my-new-app/ $ feathers generate app $ npm start ``` can be replaced by ``` $ npm create @feathersjs/app my-new-app...

Generator

### Steps to reproduce Hi, my database connection was misconfigured in production. ``` info: Feathers application started on http://localhost:3001 (node:14124) UnhandledPromiseRejectionWarning: Error: connect ECONNREFUSED 127.0.0.1:27017 at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1097:14)...

I think we need a slight restructure of the hook object that provides a bit firmer “contract” for what can be returned/modified and also helps people avoid common pitfalls. Overall...

Discussion
Proposal
Breaking Change

### Expected behavior When listening to a socket event, I expect the returned `data` to have been run through all client side `after` hooks. ### Actual behavior The `data` is...

Feature
Discussion
Client

I need know if Feather can handle WebRTC. thanks

Transport

### Problem to be solved Feathers allow to register hooks on a service using `service.hooks({ xxx })`, however this is a append-only method. Once some hooks have been registered it...

Feature
Proposal

_From @eric-burel on June 8, 2018 8:32_ Hi, I noticed that the fetch service always does a `response.json()`, however in many case you might need another conversion (e.g `response.blob()` for...

Feature
Client

It's common to pass a query to the `find` service method, but less common to pass any other parameters, so for convenience perhaps `query` should be separated from `params` in...