Download files(Electron)

I need to download files through the Electron app. Files are voluminous, weigh about 2.5-3GB. How can I implement a file download so that the download process can be paused and continued later?

Technologies that I use (Electron, Node.JS, Vue.JS latest versions). Perhaps there are some modules?

Upvotes: 2

Views: 842

Answers (1)

Bob Kimani
Bob Kimani

Reputation: 1164

You should checkout Node Download Helper

It's a node library that has an easy API for pausing and resuming downloads, rather than building your own from scratch.

Here are some of its methods

Upvotes: 3

Related Questions