
Security News
TeamPCP and BreachForums Launch $1,000 Contest for Supply Chain Attacks
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.
@softwareasaservice/queue
Advanced tools
Maintain a queue for your React/Next App on the cloud or self-host, from @importsaas
Maintain a queue in the cloud, for your Node/React/Nextjs App.
A zero dependency npm module, by reusing fetch in Nextjs. (on node, assumes you have installed node-fetch)
# with yarn
yarn add @softwareasaservice/queue
# or with npm
npm install @softwareasaservice/queue
var q = new Queue({EMAIL:"your@email.com");
// if you have an Enterprise account, pass in your `APIKEY`
var q = new Queue({EMAIL:"your@email.com", APIKEY:"skip_if_not_given_to_you"});
| option | value |
|---|---|
EMAIL | Your email |
APIKEY | For enterprise customers |
maxBuffer | 25 |
intervalInMs | 5000 |
intervalInMs | 5000 |
import {Queue} from "@softwareasaservice/queue";
var q = new Queue({EMAIL:"your@email.com", APIKEY:"skip_if_not_given_to_you"},{
onSuccess: (_, worked)=> {console.log('got', worked);},
onError: (_, failed)=> {console.log('error:',failed);}
});
export default (req, res) => {
q.add({a:1, b: [2,4], c: "str", someField: `apple${Date.now()}`})
res.status(200).json(q.buff);
}
Additional step for Node or an environment that does not have the fetch function
# required for node
yarn add node-fetch
# or via npm
npm install node-fetch
Then continue with the setup
const Queue = require("@softwareasaservice/queue").Queue;
var q = new Queue({EMAIL:"your@email.com", APIKEY:"skip_if_not_given_to_you"},{
onSuccess: (_, worked)=> {console.log('got', worked);},
onError: (_, failed)=> {console.log('error:',failed);}
});
// queue an object
q.add(anyObject);
// queue the body from an express route handler
q.add(req.body);
// use any attributes you like, that can be JSON stringified
q.add({a:1, b: [2,4], c: "str", someField: `apple${Date.now()}`})
Every 5 seconds. This is configurable via the intervalInMs that can be passed along with the EMAIL while creating the queue. The maxBuffer is 25, that can also be passed in as an option.
var q = new Queue({EMAIL:"your@email.com");
var q = new Queue({EMAIL:"your@email.com"},{
debugger: (payload)=> {console.log('sending:', payload);}
});
var q = new Queue({EMAIL:"your@email.com", {
onSuccess: (err, payload)=> {console.log('sent:', worked);}
});
var q = new Queue({EMAIL:"your@email.com"},{
onError: (err, payload)=> {console.log('error:', failed);}
});
MIT
importSaaS, a stealth startup that simplifies the SaaS journey for builders.
Email help@importsaas.com to see how to self-host, share feedback, or to to say hello.
FAQs
Maintain a queue for your React/Next App on the cloud or self-host, from @importsaas
We found that @softwareasaservice/queue 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.

Security News
TeamPCP and BreachForums are promoting a Shai-Hulud supply chain attack contest with a $1,000 prize for the biggest package compromise.

Security News
Packagist urges PHP projects to update Composer after a GitHub token format change exposed some GitHub Actions tokens in CI logs.

Research
GemStuffer abuses RubyGems as an exfiltration channel, packaging scraped UK council portal data into junk gems published from new accounts.