David Luecke
David Luecke
This should be doable with the manual reconnection mentioned in the [Socket.io documentation](https://socket.io/docs/v4/client-api/#socketconnect): ```ts socket.on('disconnect', () => { socket.connect() }) ```
If someone can get that PR updated and everything passing I'd be ecstatic but @fratzinger spend a good amount of time on it and then I put about another week...
For contributing you shouldn't run into any problems if you use plain old npm and [follow the contribution steps](https://github.com/feathersjs/feathers#contributing). Like I said, a few people haven now spent quite a...
Sorry about that. The reason why we haven't added it before is because most Cookbook entries haven't been updated to the latest version. I'm not sure what to do about...
This is definitely still something that can be clarified or made easier. I'm just not entirely sure exactly how.
So I can definitely confirm this is a problem and I found a fix for this use case (by removing https://github.com/feathersjs/feathers/blob/dove/packages/mongodb/src/index.ts#L16) but then the paginated case doesn't work. I also...
There might be a way to throw an error if the parameter length is not as expected but this was also the reason why the new generated application is registering...
Apologies, you're right, it doesn't give a type error which is really strange because it is marked as required in the typings. Unfortunately there isn't a way to determine if...
Socket.io works standalone as well, you can just remove the Koa or Express integration pieces. Adapted from the quick start this should work (though I'm getting a uws build error...
Feathers already has a middleware system through hooks. I've also gotten pretty weary of adding new integrations because the problem is that 95% of people will use the default anyway...