r2-image-worker icon indicating copy to clipboard operation
r2-image-worker copied to clipboard

Store and Deliver images with R2 backend Cloudflare Workers.

Results 5 r2-image-worker issues
Sort by recently updated
recently updated
newest added

![Screen Shot 2023-08-03 at 10 43 59 AM](https://github.com/yusukebe/r2-image-worker/assets/4682613/7bb88411-5574-49b7-bde1-18db72c67dd8) May I have a link to this app?

Presently I try to upload the same base64 image and it returns the same image name in response. What if multiple users can have the same image And they will...

In code you have used secrate variable USER and in Readme You said NAME Either change USER => NAME in Code interface Env { BUCKET: R2Bucket USER: string // change...

I am trying to convert the file in the following way: ``` const handleFileChange =(e:ChangeEvent)=>{ if(e.target.files){ const file = e.target.files[0] if(file==null){ return } const reader = new FileReader() reader.readAsDataURL(file) reader.onload=(e)=>{...