![38% of CISOs Fear They’re Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
react-use-downloader
Advanced tools
Creates a download handler function and gives progress information
Creates a download handler function with its progress information and cancel ability.
Statements | Branches | Functions | Lines |
---|---|---|---|
Plain |
---|
![]() |
Preview! |
npm install --save react-use-downloader
import React from 'react';
import useDownloader from 'react-use-downloader';
export default function App() {
const { size, elapsed, percentage, download, cancel, error, isInProgress } =
useDownloader();
const fileUrl =
'https://upload.wikimedia.org/wikipedia/commons/4/4d/%D0%93%D0%BE%D0%B2%D0%B5%D1%80%D0%BB%D0%B0_%D1%96_%D0%9F%D0%B5%D1%82%D1%80%D0%BE%D1%81_%D0%B2_%D0%BF%D1%80%D0%BE%D0%BC%D1%96%D0%BD%D1%8F%D1%85_%D0%B2%D1%80%D0%B0%D0%BD%D1%96%D1%88%D0%BD%D1%8C%D0%BE%D0%B3%D0%BE_%D1%81%D0%BE%D0%BD%D1%86%D1%8F.jpg';
const filename = 'beautiful-carpathia.jpg';
return (
<div className="App">
<p>Download is in {isInProgress ? 'in progress' : 'stopped'}</p>
<button onClick={() => download(fileUrl, filename)}>
Click to download the file
</button>
<button onClick={() => cancel()}>Cancel the download</button>
<p>Download size in bytes {size}</p>
<label for="file">Downloading progress:</label>
<progress id="file" value={percentage} max="100" />
<p>Elapsed time in seconds {elapsed}</p>
{error && <p>possible error {JSON.stringify(error)}</p>}
</div>
);
}
useDownloader()
returns:
key | description | arguments |
---|---|---|
size | size in bytes | n/a |
elapsed | elapsed time in seconds | n/a |
percentage | percentage in string | n/a |
download | download function handler | (downloadUrl: string, filename: string, timeout?: number) |
cancel | cancel function handler | n/a |
error | error object from the request | n/a |
isInProgress | boolean denoting download status | n/a |
const { size, elapsed, percentage, download, cancel, error, isInProgress } =
useDownloader();
useDownloader(options?: UseDownloaderOptions)
also accepts fetch's RequestInit options:
const { download } = useDownloader({
mode: 'no-cors',
credentials: 'include',
headers: {
Authorization: 'Bearer TOKEN',
},
});
Thanks goes to these wonderful people (emoji key):
Eric Semeniuc 🤔 | davdi1337 💻 🐛 | Mauro Stepanoski 🤔 💻 | Sam "Betty" McKoy 🐛 | Peran Osborn 🐛 🤔 |
This project follows the all-contributors specification. Contributions of any kind welcome!
react-use-downloader is MIT licensed.
This hook is created using create-react-hook.
FAQs
Creates a download handler function and gives progress information
The npm package react-use-downloader receives a total of 0 weekly downloads. As such, react-use-downloader popularity was classified as not popular.
We found that react-use-downloader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.