Skip to content

FAQ

We've been collecting some commonly asked questions here. We'll either be updating the guide directly, providing answers here, or both.

Why should I use Feathers?

There are many other Frameworks that let you build web applications so this is definitely a justified question. The key part for Feathers is that it takes a different approach to both, traditional MVC frameworks like Rails, Sails or NestJS and low level HTTP frameworks like Sinatra, Express or Fastify. Instead of creating routes, controllers and HTTP request and response handlers, Feathers uses services and workflows (hooks) that let you focus on your application logic independently from how it is being accessed.

This makes applications easier to understand and test and it allows Feathers to automatically provide REST APIs, websocket real-time APIs (which can often be quite a bit faster) and universal usage on the client and the server. It also makes it possible to add new communication protocols (like HTTP2 or GraphQL) without having to change anything in your application code. Feathers does all that while staying lightweight with a small API surface and codebase and flexible by letting you use it with the backend and frontend technology that best suits your needs.

For more information

Is Feathers production ready?

Yes! Feathers had its first stable release in 2014 and is being used in production by a bunch of companies from startups to fortune 500s. For some more details see this answer on Quora.

What Node versions does Feathers support

Feathers supports all NodeJS versions from the current Active LTS upwards. See the Node.JS working group release schedule for more information.

How do I create custom methods?

Feathers is built around the REST architectural constraints reflected by its standard service methods. There are many benefits using those methods like security, predictability and sending pre-defined real-time events so you should try to structure your application with the standard service methods. For example:

Send email action that does not store mail message in database.

Resources (services) don't have to be database records. It can be any kind of resource (like the current weather for a city or creating an email which will send it). Sending emails is usually done with either a separate email service:

ts
class EmailService {
  async create(data: EmailData) {
    return sendEmail(data)
  }
}

app.use('/email', new EmailService())

Place an order in e-commerce web site. Behind the scenes, there are many records will be inserted in one transaction: order_item, order_header, voucher_tracking etc.

This is what Feathers hooks are used for. When creating a new order you also have a well defined hook chain:

ts
app.service('orders').hooks({
  before: {
    create: [validateData(), checkStock(), checkVoucher()]
  },
  after: {
    create: [
      chargePayment(), // hook that calls `app.service('payment').create()`
      sendEmail(), // hook that calls `app.service('email').create()`
      updateStock() // Update product stock here
    ]
  }
})

However, there are some use cases where you might still want to allow additional methods for a client to call (like re-sending a verification email or resetting a password on the user service) and this is what custom service method can be used for.

How do I do nested or custom routes?

Normally we find that they actually aren't needed and that it is much better to keep your routes as flat as possible. For example something like users/:userId/posts is - although nice to read for humans - actually not as easy to parse and process as the equivalent /posts?userId=<userid> that is already supported by Feathers database adapters. Additionally, this will also work much better when using Feathers through websocket connections which do not have a concept of routes at all.

However, nested routes for services can still be created by registering an existing service on the nested route and mapping the route parameter to a query parameter like this:

ts
app.use('/posts', postService)
app.use('/users', userService)

// re-export the posts service on the /users/:userId/posts route
app.use('/users/:userId/posts', app.service('posts'))

// A hook that updates `data` with the route parameter
async function mapUserIdToData(context: HookContext) {
  if (context.data && context.params.route.userId) {
    context.data.userId = context.params.route.userId
  }
}

// For the new route, map the `:userId` route parameter to the query in a hook
app.service('users/:userId/posts').hooks({
  before: {
    find: [
      async (context: HookContext) => {
        // Map the `userId` route parameter to the query
        context.params.query = {
          ...context.params.query,
          userId: context.params.route.userId
        }
      }
    ],
    create: mapUserIdToData,
    update: mapUserIdToData,
    patch: mapUserIdToData
  }
})

Now going to /users/123/posts will call postService.find({ query: { userId: 123 } }) and return all posts for that user.

For more information about URL routing and parameters, refer to the Express chapter.

important

URLs should never contain actions that change data (like post/publish or post/delete). This has always been an important part of the HTTP protocol and Feathers enforces this more strictly than most other frameworks. For example to publish a post you would call .patch(id, { published: true }).

Why are you using JWT for sessions

Feathers is using JSON web tokens (JWT) for its standard authentication mechanism. Some articles like Stop using JWT for sessions promotes using standard cookies and HTTP sessions. While it brings up some valid points, not all of them apply to Feathers and there are other good reasons why Feathers relies on JWT:

  • Feathers is designed to support many different transport mechanisms, most of which do not rely on HTTP but do work well with JWT as the authentication mechanism. This is even already the case for websockets where an established connection normally is not secured by a traditional HTTP session.
  • By default the only thing that Feathers stored in the JWT payload is the user id. It is a stateful token. You can change this and make the token stateless by putting more data into the JWT payload but this is at your discretion. Currently the user is looked up on every request after the JWT is verified to not be expired or tampered with.
  • You need to make sure that you revoke JWT tokens or set a low expiration date or add custom logic to verify that a user’s account is still valid/active. Currently the default expiration is 1 day. We chose a reasonable default for most apps but depending on your application this might be too long or too short.

Additionally, it is still possible to use Feathers with existing traditional Express session mechanism by using custom Express middleware. For example, params.user for all service calls from a traditional Express session can be passed like this:

ts
app.use(function (req, res, next) {
  // Set service call `param.user` from `session.user`
  req.feathers.user = req.session.user
})

Can you support another database?

Feathers database adapters implement 90% of the functionality you may need to use Feathers with certain databases. You can also find a wide variety of community maintained database adapters in the ecosystem. However, even if your favourite database or ORM is not on the list or the adapter does not support specific functionality you are looking for, Feathers can still accommodate all your needs by writing your own services.

Important

To use Feathers properly it is very important to understand how services work and that all existing database adapters are just services that talk to the database themselves.

The why and how to write your own services is covered in the Feathers guide. A custom service can be generated by running npx feathers generate service, choosing "A custom service" and then editing the <servicename>/<servicename>.class.js file to make the database calls.

If you would like to publish your own database adapter, first make sure there isn't already a community maintained adapter for that database. If one exists, many maintainers are happy to get some help. If not, you can find a database adapter reference implementation in the @feathersjs/memory module. It is always possible for community maintained adapters to graduate into an official Feathers adapter, at the moment there are however no plans to add support for any new databases from the Feathers team directly.

How do I watch for database changes?

In order to get real-time updates for a change, all requests have to go through your Feathers application or API server. Feathers does not watch the database for changes so if changes in the database are made outside of the Feathers application and clients should be notified, the notification needs to be sent manually.

This depends on the database adapter you are using. See the search querying chapter for more information.

Why am I not getting JSON errors?

If you get a plain text error and a 500 status code for errors that should return different status codes, make sure you have the express.errorHandler() from the @feathersjs/express module configured as described in the Express errors chapter.

Why am I not getting the correct HTTP error code

See the above answer.

How can I do custom methods like findOrCreate?

Custom functionality can almost always be mapped to an existing service method using hooks. For example, findOrCreate can be implemented as a before-hook on the service's get method. See this gist for an example of how to implement this in a before-hook. It is also possible to implement custom methods on the service for functionality that can't be implemented in a hook.

How do I create channels or rooms

In Feathers channels are the way to send real-time events to only certain clients.

How do I do validation?

Schemas and validator are the recommended way to implement basic validations based on JSON schema. Resolvers can be used for advanced validation like dynamic password policies.

Schemas and resolvers are then used as validation hooks and resolver hooks. Hooks are also the place to perform validation without schemas and resolvers.

How do I do associations?

The preferred way for associations are resolvers. See the guide for an example on how to do associations.

How do I access the request object in hooks or services?

In short, you shouldn't need to. If you look at the hooks chapter you'll see all the params that are available on a hook.

If you still need something from the request object (for example, the requesting IP address) you can tack it on to the req.feathers object as described here for Express, here for Koa or socket.feathers when using web sockets as described here.

How do I mount sub apps?

It's pretty much exactly the same as Express. More information can be found here.

How do I do some processing after sending the response to the user?

The hooks workflow allows you to handle these situations quite gracefully. It depends if you await or not in your hook. Here's an example of a hook that sends an email, but doesn't wait for a success message.

ts
;async (context: HookContext) => {
  // Send an email by calling to the email service.
  context.app.service('emails').create({
    to: '[email protected]',
    body: 'You are so great!'
  })

  // Send a message to some logging service.
  context.app.service('logging').create(context.data)

  return context
}

How do I debug my app

It's really no different than debugging any other NodeJS app but you can refer to this blog post for more Feathers specific tips and tricks.

Why can't I pass params from the client?

When you make a call like:

ts
const params = { foo: 'bar' }

const user = await client.service('users').patch(1, { admin: true }, params)

on the client the context.params object will only be available in your client side hooks. It will not be provided to the server. The reason for this is because context.params on the server usually contains information that should be server-side only. This can be database options, whether a request is authenticated, etc. If we passed those directly from the client to the server this would be a big security risk. Only the client side context.params.query and context.params.headers objects are provided to the server.

If you need to pass info from the client to the server that is not part of the query you need to add it to context.params.query on the client side and explicitly pull it out of context.params.query on the server side. This can be achieved like so:

ts
// client side
client.hooks({
  before: {
    all: [
      async (context: HookContext) => {
        context.params.query = {
          ...context.params.query,
          $client: {
            platform: 'ios',
            version: '1.0'
          }
        }
      }
    ]
  }
})

On the server in src/app:

ts
app.hooks({
  before: {
    all: [
      async (context: HookContext) => {
        // Pull out `$client` parameter and create a new `query` object
        const {
          $client: { platform, version },
          ...query
        } = params.query

        // Update context.params with the new information
        context.params = {
          ...context.params,
          platform,
          version,
          query
        }
      }
    ]
  }
})

danger

Make sure to validate and sanitize any client side values to prevent security issues.

My queries with null values aren't working

tip

Query values will be converted to the correct type automatically when using a query schema. This issue also does not happen when using websockets since it retains all type information.

When making a request using REST (HTTP) query string values don't have any type information and will always be strings. Some database adapters that have a schema (like feathers-mongoose or feathers-sequelize) will try to convert values to the correct type but others (like feathers-mongodb) can't. Additionally, null will always be a string and always has to be converted if you want to query for null. This can be done in a before hook:

ts
app.service('myservice').hooks({
  before: {
    find: [
      async (context: HookContext) => {
        const {
          params: { query = {} }
        } = context

        if (query.phone === 'null') {
          query.phone = null
        }

        context.params.query = query

        return context
      }
    ]
  }
})

Also see this issue.

Why are queries with arrays failing?

If you are using REST and queries with larger arrays (more than 21 items to be exact) are failing, you are probably running into an issue with the querystring module which limits the size of arrays to 21 items by default. The recommended solution is to implement a custom query string parser function via app.set('query parser', parserFunction) with the arrayLimit option set to a higher value:

js
var qs = require('qs')

app.set('query parser', function (str) {
  return qs.parse(str, {
    arrayLimit: 100
  })
})

For more information see the Express application settings @feathersjs/rest#88 and feathers-mongoose#205.

I always get a 404 for my custom middleware

Just like in Express itself, the order of middleware matters. If you registered a custom middleware outside of the generator, you have to make sure that it runs before the notFound() error midlleware.

My configuration isn't loaded

If you are running or requiring the Feathers app from a different folder Feathers configuration needs to be instructed where the configuration files for the app are located. Since it uses node-config this can be done by setting the NODE_CONFIG_DIR envorinment variable.

How do I set up HTTPS?

In most production environments your Feathers application should be behind an NginX proxy that handles HTTPS. It is also possible to add SSL directly to your Feathers application which is described in the Express HTTPS docs.

Released under the MIT License.