@cloudflare/util-http-file

Cloudflare HTTP File Util

Usage no npm install needed!

<script type="module">
  import cloudflareUtilHttpFile from 'https://cdn.skypack.dev/@cloudflare/util-http-file';
</script>

README

cf-util-http-file

Cloudflare HTTP File Util

Installation

$ npm install cf-util-http-file

Usage

upload('/api/upload-file', fileInput.files[0], res => {
  console.log('Success!');
}, err => {
  console.log('Failed!');
});
download('/api/download-file', 'filename.txt', res => {
  console.log('Success!');
}, err => {
  console.log('Failed!');
});

Note: This is only really meant for plain text files, it might work with other stuff but don't expect it to.