New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

queuetab

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

queuetab

Small module to execute tasks in a queue

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

Contributors Issues MIT License


QueueTab

About QueueTab

QueueTab is a small JavaScript module to execute tasks in a queue.

Installation

Install the package with npm

npm install queuetab

Usage

const QueueTab = require('queuetab');
const queuetab = new QueueTab();

// asyncFunc is an example function, use your actual function instead
queuetab.add(asyncFunc, (err, res) => console.log('finished task 1', err, res));
queuetab.add(asyncFunc, (err, res) => console.log('finished task 2', err, res));

Contributing

Any contributions you make are greatly appreciated.

  • Fork the Project
  • Create your Feature Branch (git checkout -b feature/MyFeature)
  • Commit your Changes (git commit -m 'Add MyFeature')
  • Push to the Branch (git push origin feature/MyFeature)
  • Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Keywords

Queue

FAQs

Package last updated on 30 Aug 2021

Did you know?

Socket

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.

Install

Related posts