File: progress.html

package info (click to toggle)
node-axios 1.2.1%2Bdfsg-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,796 kB
  • sloc: javascript: 10,727; makefile: 5
file content (24 lines) | stat: -rw-r--r-- 468 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
</head>
<body>
See your console
<script src="../../dist/axios.js"></script>
<script>
    const data = new Int8Array(10 * 1024 * 1024);

    data.fill(123);

    axios.post('http://httpbin.org/post', data, {
        onUploadProgress: console.log,
        onDownloadProgress: console.log,
    }).then(data=> {
        console.log(`Done: `, data);
    }).catch(console.warn);

</script>

</body>
</html>