Effect CommunityEC
Effect Community•2y ago•
7 replies
Aleks M

Implementing Upload Progress with Effect/Platform

Hi chat. I'm trying to implement upload progress with effect/platform to no avail 😦
return Http.request.put(args.url).pipe(
  Http.request.streamBody(
    fromReadableStream(() => trackStreamProgress(args.blob, args.onProgress), () => {}),
    {
      contentLength: args.blob.size,
    },
  ),
  Http.client.fetch(),
) 
Was this page helpful?