
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
long-long-job
Advanced tools
10 PRINT "HELLO"
20 GOTO 10
This module ables you to create a chain of tasks (computations or actions) with ability to resume run state on restart. Each task receives state of previous task (or initial state if it is first in chain) and must return action what to do next composed with new state.
First of all we need to define where job's state will be stored during transitions. Then we must initialize module with it.
For example, we will store state in Map object. This is simplest storage method and it won't preserve state during restarts.
const { longLongJob } = require('long-long-job');
const mapBasedStorage = () => {
const stateStore = new Map();
return {
async hasState(id) {
return stateStore.has(id);
},
async setState(id, state) {
stateStore.set(id, state);
},
async getState(id) {
return stateStore.get(id);
},
async clean(id) {
stateStore.delete(id);
},
};
};
module.exports = longLongJob(mapBasedStorage());
const LongLongJob = require('./LongLongJob');
const { repeat, next } = require('long-long-job');
const incrementJob = new LongLongJob('increment-job', [
async ({ value, threshold }) => {
incrementJob.emit('tick', value);
return value < threshold
? repeat({ value: value + 1, threshold })
: next({ value, threshold });
},
]);
module.exports = incrementJob;
const incrementJob = require('./incrementJob');
incrementJob.on('start', () => console.log('Job started'));
incrementJob.on('resume', () => console.log('Job resumed'));
incrementJob.on('tick', value => console.log('Current value is %d', value));
incrementJob.on('done', () => console.log('Job finished'));
incrementJob
.start({ value: 0, threshold: 1000 })
.then(({ value }) => console.log('Task is done with value %d', value));
FAQs
Library for execution of long jobs with resume support.
The npm package long-long-job receives a total of 2 weekly downloads. As such, long-long-job popularity was classified as not popular.
We found that long-long-job 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.

Research
A malicious package uses a QR code as steganography in an innovative technique.

Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.