Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extension to add Global Error Handler/Response Handler #5249

Open
shravan20 opened this issue Aug 26, 2023 · 2 comments
Open

Extension to add Global Error Handler/Response Handler #5249

shravan20 opened this issue Aug 26, 2023 · 2 comments

Comments

@shravan20
Copy link

Idea:

Add an option to extend a internal global error handler and response envelope wrapper.

This basically wraps the response into a wrapper and automatically takes care of the error and how's it wrapped into json.

Like wise for success responses too.

@sbrsubuvga
Copy link

sbrsubuvga commented Nov 30, 2023

` app.use(function(err,req,res,next){
if(err.name=='UnauthorizedError') {
return res.status(401).send({status:'error',msg:'Authentication failed'});
}
else{
return res.status(500).send({status:'error',msg:'Internal Server Error'});
}

})`

@kisshan13
Copy link

Don''t worry i'm working on same. A package named exhancer you can check here... https://github.com/kisshan13/exhancer.js

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants