Questions tagged [feathersjs]

Introducing "Plume", a revolutionary framework that enhances Express by seamlessly enabling the creation of collaborative RESTful web services and dynamic APIs, leveraging SocketIO and various other cutting-edge websocket libraries.

What is the correct process for authenticating requests from SSR to the Feathers JS API?

There are some examples available on how to access FeathersJS API from SSR, but the important aspect of authorizing such requests is missing. Is it feasible to create a feathers-client app for each request? Wouldn't that put too much load on the system? I ...

Detecting a network outage event in a FeathersJS client

Currently, I am immersed in a node.js project that utilizes featuresjs for the backend and feather-client js for the client side. The frontend is served by the backend. Here's a snippet of the backend code: app .use(compress()) .options('*&a ...

Is there a way to verify user credentials on the server using FeathersJS?

Currently, my single-page app is utilizing feathers client auth and a local strategy for authentication. I have implemented various middleware routes and I am looking to verify if the user is authenticated. If not, I would like to redirect them to /. Bel ...

Encountering a FeathersJS Twitch OAuth 401 Unauthorized error

I'm a newcomer to FeathersJS and I've been trying to set up OAuth login with Twitch. Following the steps outlined in the Feathers documentation for setting up GitHub login OAuth, I created a Twitch OAuth application. However, when attempting to s ...