Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
havana-error
Advanced tools
An error response handler.
Havana error works with a request/response dispatcher such as
Havana server,
Havana browser
or a library with an interchangeable API. When a dispatcher
publishes a response.error
event, Havana error will in turn
publish a response.send
event with a 404 response.
npm install havana-error
import Error from 'havana-error';
import Event from 'havana-event';
import Server from 'havana-server';
const event = new Event();
const reporting = {
'level': 2,
'reporter': console.log,
};
const server = new Server({
'event': event,
'reporting': reporting,
});
new Error({
'event': event,
'reporting': reporting,
});
server.listen( 3000 );
Events take the form of Havana event or a library with an interchangeable API.
response.send
: Signifies that Havana error has handled
a response error, publishing the response data for
consumption by a request/response dispatcher.response.error
: Allows a request/response dispatcher
to notify Havana error that all registered handlers have
failed to handled a request.Havana error is written using ES2015+ syntax.
However, by default this module will use an ES5 compatible file that has been compiled using Babel.
In the dist
directory there are four files, the default
is error.server.js
. The default when using a client-side
bundler that supports the
browser field
spec is error.browser.js
.
Havana error currently requires the
Babel polyfill.
You are expected to supply this yourself. However, as a
courtesy you will also find error.server.with-polyfill.js
and error.browser.with-polyfill.js
in the dist
directory.
FAQs
An error response handler
We found that havana-error 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.