I am a Java developer doing my first steps with JavaScript.
In the next couple of months my Javascript code is going to be pushed to production and had a question about code and application monitoring.
With java (or any major programming language for that matter) there are tools to monitor the application health - logs, exceptions, asserts.. Which once a bug is being opened, provides me more information about the server state.
- Or scanning the logs I can tell if there were any issues with the applications.
How do I know what my customers are doing with the UI? How do I send exceptions or logs to my client? Should I do it or it is unnecessary overhead?
What are there coding practices or tools that I can achieve it on the JavasScript side? links to good articles/tutorials around this topic will be highly appreciated.