Error handling - The missing piece of your node.js architecture

Santiago Quinteros - CEO & CTO - Software on the road
By:
Santiago Quinteros

Introduction

Going to production will change your development workflow, add stress to your life, and take away development time for maintaining tasks. It's like having a baby.

But I don't want to discourage you about going live, your boss will hate me, instead, I want to provide you a few tips that I learn through these years of pain experience going to production.

I hope you find this post useful, if you think that I stole your time, please, send me a tweet at @santypk4 with your feelings.

Table of contents

Error handling in Node.js 🚧

user report

When was the last time that a final user reports you a bug?

Maybe when the error was fatal and he needed to use your system to continue working.

But most of the time errors occur, and we the developers behind never notice it.

The users generally don't want to report a bug, it involves filling ugly forms, giving too many details, and usually they never get an answer.

The last time this happened to me, I was trying this new SaaS product that automatically brings me content related to my niche, to post on Twitter, all based in a state-of-the-art AI.

I was instantly bought by the landing page

Well, to my luck, the app was entirely broke, the signup form never completes the request because some specific field was bad validated.

So I contacted the developers by twitter, but they never respond to me.

Until the last day of the month, when they wanted to charge me for a subscription to their SaaS that never worked.

I'm still interested in a service like this

Don't be like those guys and log your errors before the user notice it.

You must have a stable, reliable, centralized way to handle your errors.**

Using a real-world example of the 3-layer architecture from the previous article, let's imagine that your user search engine starts to fail.

layers

The important here is not to handle the errors from the underlying layers but to throw it to the controller layer.

import UsefulError from '../utils/usefulError';
class UserService {
  constructor(
    private userSearchEngineService,
    private userThirdpartyService,
    private userDatabaseModel,
    private logger,
  )


  GetAll() {
    try {
      return this.userDatabaseModel.find();
    } catch(e) {
      throw new Error(`The database is dead!`, 503) 
    }
  }

  SearchUserByLocation(lat, long) {
    try {
      this.logger.silly('performing search...')
      return this.userSearchEngineService.searchByLocation(lat, long);
    } catch(e) {
      throw new Error(`The user search engine doesn't work!`, 503) 
    }
  }

  // Not related to something that happened to me 
  GetUsersFromThatThirdPartyServiceThatTheFounderMadeUsAssociateAndNeverWorkAndSeemLikeOurFault() {
    try {
      return this.userThirdpartyService.find();
    } catch(e) {
      this.logger.silly('We should call Pablo')
      throw new Error(`The thirdparty api doesn't work!`, 500) 
    }
  }
}

Let's create a custom class error, so we can add it more properties.

class UsefulError extends Error {
  constructor(name, httpStatusCode = 500, context, ...params) {
    // Pass remaining arguments (including vendor specific ones) to parent constructor
    super(...params);

    // Maintains proper stack trace for where our error was thrown (only available on V8)
    if (Error.captureStackTrace) {
      Error.captureStackTrace(this, UsefulError );
    }

    this.name = 'name';
    this.httpStatusCode = httpStatusCode;
    this.context = context; 
    this.date = new Date();
  }
}

Don't obfuscate your errors, be honest, let your users know why the request fail, so they can perform another action, or try something different.

A good error message will be like:

The user search engine doesn't work for now but you can still view your profile.

import Logger from '../logger';
import UserService from '../services/user';

export default (app) => {
  app.get('/user/search-location', (req, res, next) => {
    try {
      const { lat, lng } = req.query;
      Logger.silly('Invoking user service to search by location')
      const users = UserService.SearchUserByLocation(lat, lng);
      return res.json(users).status(200);
    } catch(e) {
      Logger.warn('We fail!')
      return next(e);
    }
  })
}

The controller layer just passes it to the next express middleware, our centralized error handler.

import Logger from '../logger';
export default (err, req, res, next) => {
  Logger.error('Error %o', err);
  return res.json(err).status(err.httpStatusCode || 500);
}

Which bring me to...

The importance of logs 📝

Have you ever have a server that you filled with console.logs for everything?

✋ I have been there.

But then, have you ever have a server that doesn't log anything?

✋ I have been there too, and it was worst than logging everything.

What I do now is a mix between both approaches.

I log EVERYTHING but not everything is printed in the output log 😉

I strongly believe that you need to log when an action is about to be performed, when the action has been performed, the result and the error if happened.

log calls

Although, those logs have different levels.

log layers

When your app is on production, and you need more information, just change the log level through an environment variable.

log layers

You can see an example of a migration from console.log to winston in this PR to the bulleproof node.js project.

The best thing, winston let you set the 'transport' layer, that would be where your errors show up.

I made them appear in the console, but you can easily install a plugin that will report to Sentry or Rollbar or whatever is the best for you.

Blessed adapter pattern.

Conclusion 🏗️

Use a logger library like Winston, and separate your logs by level instead of using console.log that flood the log files.

Consider using a centralized error handling, can be a middleware for express, just forward your errors all to the same central location in your server.

I hope you enjoyed this little post, and if you are interested in more node.js tips, and maybe a Bullet Proof node.js project architecture, I strongly recommend you to read that article.

See the example repository here 🔬

Get the latest articles in your inbox.

Join the other 2000+ savvy node.js developers who get article updates. You will receive only high-quality articles about Node.js, Cloud Computing and Javascript front-end frameworks.


santypk4

CEO at Softwareontheroad.com