Downloading Manager
npm installconst maxConcurrentJobs = 5;
const maxRetries = 2;
const fm = new FetchManager(maxConcurrentJobs, maxRetries);
const url = "http://{...}";
// optional request options
// https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch
const options = {};
//for blobs
fm.add(url, options)
.then((response) => {console.log("Blob object is in response ready to be used: " + response)})
.catch((e) => {console.log(e)});
//json
fm.add(url, options)
.then((r) => r.json())
.then((r) => {console.log("success: " + r)})
.catch((e) => {console.log(e)});Additional methods:
fm.getAllDownloads(); //get all active and queued downloads
fm.getStatus(id); // return status of a task (active or queued)
fm.cancel(id); // cancels a task, return promiseIf there's a need to listen for downloading progress (this feature works for a few browsers unfortunatelly)
var job = fm.createJob(url, options);
job.setProgressListener((progress, currentlyDownloadedLength, totalLength) => {
console.log("progress: " + progress + "%\n");
});
fm.addJobToQueue(job)
.then((response) => {console.log("Blob object is in response ready to be use: " + response)})
.catch((e) => {console.log(e)});
ES6 source files
|
|
webpack
|
+--- babel, eslint
|
ready to use
library
in umd format
Have in mind that you have to build your library before publishing. The files under the lib folder are the ones that should be distributed.
- Setting up the name of your library
- Open
webpack.config.jsfile and change the value oflibraryNamevariable. - Open
package.jsonfile and change the value ofmainproperty so it matches the name of your library.
- Build your library
- Run
npm installto get the project's dependencies - Run
npm run buildto produce minified version of your library.
- Development mode
- Having all the dependencies installed run
npm run dev. This command will generate an non-minified version of your library and will run a watcher so you get the compilation on file change.
- Running the tests
- Run
npm run test
npm run build- produces production version of your library under thelibfoldernpm run dev- produces development version of your library and runs a watchernpm run test- well ... it runs the tests :)npm run test:watch- same as above but in a watch mode