Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
alexa-ability-timeout
Advanced tools
import { Ability, events } from 'alexa-ability';
import { handleAbility } from 'alexa-ability-lambda-handler';
import { timeout, TimeoutError } from 'alexa-ability-timeout';
const app = new Ability({
applicationId: 'my-application-id'
});
app.use(timeout(5000)); // 5 seconds
// slow, cancelable operation.
// Listen for the `timeout` event on the request and cancel the request appropriately
app.on(e.launch, function(req, next) {
const cancel = slowCancelableOperation(function(output) {
req.say(output).end(); // send output
});
req.on('timeout', cancel);
});
// slow, operation that we can't cancel.
// just check the `req.timedOut` property to see if it is safe to continue
app.on(e.end, function(req, next) {
slowOperation(function(output) {
if (req.timedOut) return; // halt if timed out
req.say(output).end(); // otherwise send output
});
});
app.onError(function(err, req, next) {
if (err instanceof TimeoutError) {
req.say('Sorry, that took to long. Please try again.').send();
} else {
req.say('Sorry, something went wrong. Please try again later.').end();
}
});
export const handler = handleAbility(app);
timeout(ms) -> middleware
Creates a middleware function that times out the request after
the given ms
have passed.
req.clearTimeout()
A function to stop the timeout completely.
req.timedOut
A boolean indicating whether the request has timed out.
FAQs
An alexa-ability middleware to prevent stalled requests.
The npm package alexa-ability-timeout receives a total of 4 weekly downloads. As such, alexa-ability-timeout popularity was classified as not popular.
We found that alexa-ability-timeout 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.