1.0.1 • Published 8 years ago

semi-sync v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

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