Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Angular Global Error Handling
Search
Dhananjay Kumar
October 31, 2024
0
14
Angular Global Error Handling
Dhananjay Kumar presentation on Angular Global Error Handling for ngPoland 2024
Dhananjay Kumar
October 31, 2024
Tweet
Share
More Decks by Dhananjay Kumar
See All by Dhananjay Kumar
Unraveling JavaScript Prototypes
debug_mode
0
16
Featured
See All Featured
10 Git Anti Patterns You Should be Aware of
lemiorhan
654
59k
No one is an island. Learnings from fostering a developers community.
thoeni
19
3k
The MySQL Ecosystem @ GitHub 2015
samlambert
250
12k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
Designing on Purpose - Digital PM Summit 2013
jponch
115
7k
We Have a Design System, Now What?
morganepeng
50
7.2k
Product Roadmaps are Hard
iamctodd
PRO
49
11k
Rails Girls Zürich Keynote
gr2m
94
13k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
25
1.8k
For a Future-Friendly Web
brad_frost
175
9.4k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.1k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
109
49k
Transcript
Dhananjay Kumar Founder, Nomad</coder> | ng-India Angular Global Error Handling
I wish undefined was a function
Types of Error @debug_mode Compile time Error Error in Template
Run time Error HTTP Errors
Run time Error
Run time Error
What if a developer forgets to try-catch
Why Global Error Handling • Set up custom error handling.
• Send error logs to the server. • Redirect to an error page when necessary. • Conduct an error analysis for the application. • Integrate Azure App Insight, Amazon CloudWatch, etc.
Step 1 Create a Service
Step 2 Implement ErrorHandler classclass Step 2
Step 3 Implement handleError method
Step 2 Provide the service in app.configclass Step 4
Run time Error
To log the stack trace, install stacktrace-js library in project,
Step 5 > npm install stacktrace-js
Step 6 Use stacktrace
Run time Error
Log @debug_mode Stacktrace Route Logged In User Date Time
Log • Create an interface • Develop a service to
send logs to the server via API. • Integrate the service within the GlobalErrorHandler to log errors and trace details.
None
Dhananjay Kumar Connect me for Training and Consulting. Email –
[email protected]
@debug_mode