
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.