GithubHelp home page GithubHelp logo

TypeError [ERR_INVALID_ARG_TYPE]: The "transform.writable" property must be an instance of WritableStream. Received an instance of Sharp about sharp HOT 3 CLOSED

antony avatar antony commented on May 29, 2024
TypeError [ERR_INVALID_ARG_TYPE]: The "transform.writable" property must be an instance of WritableStream. Received an instance of Sharp

from sharp.

Comments (3)

antony avatar antony commented on May 29, 2024 1

Gotcha! This must have changed between node 16 and 20 which is why I suddenly ran into it.

I did see that there were two distinct types of stream, but the error thrown by node doesn't indicate the two types, but instead that the arg is a Sharp which masks the real issue!

Thank you for looking into this :)

Update: Example now works: https://stackblitz.com/edit/sveltejs-kit-template-default-ea5vps?file=src%2Froutes%2F%2Bserver.js

from sharp.

lovell avatar lovell commented on May 29, 2024

Hi Antony, great to meet you too.

The body property provided by fetch() is a ReadableStream, which is somewhat confusingly part of the Web API rather than the Node.js Stream API. You can convert it to a Readable (i.e. a Node.js Stream) using Readable.fromWeb().

-   const resizedImage = imageRes.body.pipeTo(transformer);
+   const resizedImage = Readable.fromWeb(imageRes.body).pipe(transformer);

I'll add an example to the docs as I suspect you won't be the only person who runs into this.

from sharp.

lovell avatar lovell commented on May 29, 2024

Commit 045d54e modernises one of the existing examples in the docs to include use of fetch() and .fromWeb().

from sharp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.