semi-sync

1.0.1 • Public • Published

Semi-Sync

NPM version

Semi-Sync allows you to semi-synchronous requests. There are two ways you can send links that you want to request. You can send links in the array or file.

Example Code

var semiSync = require("semi-sync");

semiSync.requestLinksFromArray(linksArray, requestLimitInSameTime, function(err, results){
	if(err) console.log(err);
	//...
});

semiSync.requestLinksFromFile(linksFilePath, requestLimitInSameTime, function(err, results){
	if(err) console.log(err);
	//...
});

There are two functions in semi-sync module.

Download

The source is available for download from GitHub. Alternatively you can install using npm:

npm install --save semi-sync

Readme

Keywords

Package Sidebar

Install

npm i semi-sync

Weekly Downloads

0

Version

1.0.1

License

ISC

Last publish

Collaborators

  • endrcn
  • nicely