Server-Side Development with Fastify — Error Handler, Route List, and Parsing Content

John Au-Yeung
JavaScript in Plain English
3 min readDec 6, 2020

--

Photo by Harley-Davidson on Unsplash

Fastify is a small Node framework for developing back end web apps.

In this article, we’ll look at how to create back end apps with Fastify.

Set Error Handler

We can call setErrorHandler to ad an error handler.

--

--