![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
JavaScript exception-handling for both client side and Node.js scripts
Installation is a breeze with npm (and no dependencies!):
$ npm install erroneous
In browser-context Erroneous subscribes itself to the error
event of the
window
object. Thus there's only the handling of the errors left. In Node.js
you'll need to call Erroneous.error
yourself - This is to provide a greater
degree of freedom in your code.
Node.js:
var Erroneous = require('erroneous');
// You can either initialize erroneous in this way (with an optional handler)
Erroneous.listen().register(function(err) {
console.log('Custom error handler..', err);
});
// or this way:
process.on('uncaughtException', function(e) {
Erroneous.error(e);
});
Browser:
<script src='./lib/erroneous.js'></script>
<script>
// Send error to server for logging
Erroneous.server('https://example.com/log');
// Register a custom error handler
Erroneous.register(function(err) {
console.log('Custom error handler..', err);
});
</script>
The main object, that contains the logic for listening for errors and handling them.
Registers a callback, that is called when an error occurs
Register an internal callback that sends the error to the server in JSON
format. If callback
is supplied, it will be called when the response
from the server has been received.
The object that the callback function receives (and the server, in JSON format)
is an ErroneousError
. The object has several properties which, collected from
the Error
event.
SyntaxError
, ReferenceError
etc.)FAQs
JavaScript exception-handling for both client side and Node.js scripts
We found that erroneous demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.