Escape Hatch is an NPM library and website that instantly connects developers with relevant information to help cut down on debugging time.
In your terminal, type:
npm install escape-hatch
This gives you access to both client side and server side files that you can plug into your code to start getting solutions to errors.
For monitoring errors on your server side, simply add the following line to the top of your server start file:
require('escape-hatch')()
You'll see links in your terminal like this upon errors in Node:
For monitoring in the browser, use this simple script tag in your html files:
<script src='node_modules/escape-hatch/escape-hatch-browser.js'></script>
For front-end errors, you'll see links in your browser console:
Just input an error to our search bar to see a curated search results page.
- React
- Yarn
- Webpack
- Sequelize
- package.json for more info
This project is licensed under the MIT License - see the LICENSE.md file for details
Thank you to our Fullstack Academy instructor, Gabriel Lebec, for his guidance and expert knowledge on this project.

