Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 1.19 KB

README.md

File metadata and controls

19 lines (16 loc) · 1.19 KB

Robust Error Handling in Node.js

This is a ~45 minute tech talk on achieving robust error handling in Node.js applications.

I have given forms of this talk at:

I made these slides with Deckset. This repository contains the markdown and other components used, and a PDF export for easy viewing.

Abstract:

Unlike other platforms, error handling in Node.js is not as simple as try/catch.

It can be a handful between exceptions, callbacks, promises, event emitters, and other library patterns.

In this talk, learn to navigate the different error handling mechanisms and build robust Node applications so that when unhandled errors do happen, we can fail gracefully, alert someone, and minimize downtime.