
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
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.
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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.

Product
Bringing supply chain security to the next generation of JavaScript package managers