Skip to content

productioncoder/express-error-handling

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Error Handling in express

This repository contains sample code on how to do error handling with the Node.js express framework.

Please help this repo with a ⭐️ if you find it useful! 😁

This repository is part of the Error Handling in express tutorial provided by productioncoder.com.

Error Handling in express

For updates, please reach out to @_jgoebel on Twitter.

Session implementation with express.js and express-session

This repository illustrates how to handle expected errors in a DRY way in express and how to not expose any internal structure in case of unexpected errors.

Running this project

Run

npm install

to install the project's dependencies.

Execute the dev script to start up your server.

npm run dev

API

POST /tweet

Expected payload

{
    "msg": "my tweet message"
}