Git Product home page Git Product logo

Comments (3)

okaysuper avatar okaysuper commented on May 2, 2024 1

@nsmith7989 thanks for your answer.
As far as I know I'm using it only on the server side but you are probably right. @vercel/fetch somehow ended up in the client bundle otherwise I wouldn't get this error. I'll investigate further or try your solution if I need it on the client. Thanks!

from fetch.

nsmith7989 avatar nsmith7989 commented on May 2, 2024

@okaysuper I had the same problem trying to use this in nextjs. I think the problem is that dns is built into node, but isn't available in the browser. You need to make sure you're using this server side only.

I have a file that is both server and client side so my solution is something like:

function getFetch() {
  if (typeof window === 'undefined') {
    const createFetch = require('@vercel/fetch');
    return createFetch();
  }
  return window.fetch;
}

Alternatively if you're in nextjs and doing something in getStaticProps or getServerSideProps if you only use this package there nextjs will take care of not including this in the client bundle and causing errors.

from fetch.

Ethan-Arrowood avatar Ethan-Arrowood commented on May 2, 2024

Thank you for the report. We are archiving this project; you can read more details here: #83

from fetch.

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.