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

### Steps to reproduce Method using Oauth 1. Setup feathersjs/authentication-client with storage in window.localStorage. 2. Head to the relavent oauth url ex. ``http://localhost:3030/oauth/github`` 3. After the page logs in, head...

Authentication

I have authentication for 'users' service and I'd like to authenticate 'systems' (which is another service I generated) with both `local` and `jwt` strategies. how do I go about doing...

Hello :wave: I've been using feathers for two years or so already, and so far it's pretty amazing! I would like to share my input on authentication service, because I...

## The problem When doing local tests in order to try/test external OAuth2 service providers, it gets really hard to work with localhost on NODE_ENV that are not 'development' or...

Hi, I am building an app and want to use feathers server side only. I am planning to migrate my current server side implementation from another NodeJS framework (that I...

Feature

`// Initializes the `pengukuhan-kawasan` service on path `/pengukuhan-kawasan` const createService = require('feathers-sequelize'); const createModel = require('../../models/pengukuhan-kawasan.model'); const hooks = require('./pengukuhan-kawasan.hooks'); module.exports = function (app) { const Model = createModel(app); const...

At the moment, it's only possible to register one publisher per service+event ```js app.service('messages').publish(() => { /* doesn't run */ } app.service('messages').publish(() => { /* overrides the previous publisher */...

Feature
Transport

we are configuring websocket for our feathersjs app in following way ```` const feathers = require('@feathersjs/feathers') const expressFs = require('@feathersjs/express') const socketiofs = require('@feathersjs/socketio') const appFs = expressFs(feathers()) appFs.configure(socketiofs({ path:...

Feature
Transport

Is it possible to implement graphql with feathers ? Is there any documentation available around it.

Modify your _packages.json_ script(assuming this is from the feathers cli generator boilerplate) as follows: ``` "scripts": { "test": "npm run compile && npm run mocha", "dev": "ts-node-dev --no-notify src/", "start":...