
Research
Namastex.ai npm Packages Hit with TeamPCP-Style CanisterWorm Malware
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.
setinterval
Advanced tools
[![NPM version][npm-image]][npm-url] [![npm download][download-image]][download-url]
We all know the drawbacks of the built-in setInterval in Node.js(actually js itself).
It's more reasonable to start measuring period after every async task gets done. So here it is.
$ npm i setinterval
const Timer = require('setinterval');
const t = new Timer(async () => {
const user = await db.User.get(id);
console.log(user);
}, 1000);
// start timer
t.setInterval();
// after some time...
// clear timer
t.clearInterval();
Timer constructor.
Params:
period. Should be a Promise or async function or generator function or thunk.Start timer after a certain delay(defaults to 0) and can decide if invoke immediately(defaults to false).
Params:
Stop timer(can be restart again).
Triggered each time fn is finished, whenever a error is thrown. You can cancel the timer in this event. A count parameter is passed in the event handler which stands for how many times fn has been called.
timer.on('tick', count => {
timer.clearInterval();
});
Triggered when error thrown from fn.
timer.on('error', e => {
logger.info(e.stack);
});
MIT
FAQs
[![NPM version][npm-image]][npm-url] [![npm download][download-image]][download-url]
We found that setinterval 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
Malicious Namastex.ai npm packages appear to replicate TeamPCP-style Canister Worm tradecraft, including exfiltration and self-propagation.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.