0.1.8 • Published 6 years ago
@forlagshuset/fetch-manager v0.1.8
Fetch Manager
Downloading Manager
Install
npm installUse
let maxConcurrentJobs = 5;
let maxRetries = 2;
let fm = new FetchManager(maxConcurrentJobs, maxRetries);
let url = "http://{...}";
//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)});Process
ES6 source files
|
|
webpack
|
+--- babel, eslint
|
ready to use
library
in umd formatHave in mind that you have to build your library before publishing. The files under the lib folder are the ones that should be distributed.
Getting started
- 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
Scripts
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