4
The following is as follows: I use the Laravel Framework and, in it, configure the application so that when any server error occurs, it sends me an email, writes in a log file and/or sends me a message in Telegram.
This in a way helps me anticipate a problem before a customer complains that the system is malfunctioning.
In this case, sometimes, due to incorrect posting or old cache, when updating an application, some errors may appear in the Javascript console and, because of this, some functionality of an application is impaired.
I would like to know if there is any technique, a medium, or some standard of error communication that could be applied in the case of Javascript?
For example, if a customer, when accessing the page, has a problem with the jQuery
because its internet is blocking the CDN (content delivery network) of the same, this generates an error in the console.
Is there any technique or standard to report these errors, or save them in a log, as is usually done in server-side applications ?