Coder Social home page Coder Social logo

Comments (9)

icyJoseph avatar icyJoseph commented on August 23, 2024

Related issue (?) feross/buffer#359

from next.js.

fraitag avatar fraitag commented on August 23, 2024

Probably yes. However, I am unsure about the specific version included in the Next.js polyfill. This library is precompiled and is not a Node.js package.

from next.js.

icyJoseph avatar icyJoseph commented on August 23, 2024

I'm guessing 5.x by looking at the compiled/vendored dependency.

On another note, why do you need Buffer in the browser? It is often a sign that code you don't mean to ship to the client, is making its way there, often through browserify

from next.js.

fraitag avatar fraitag commented on August 23, 2024

Absolutely, but the external library I use has protection against the lack of Buffer in the environment and executes the logic according to a different path. However, the nextjs mechanisms detect the presence of the word "Buffer" in the external module's code and add a polyfill (though it is not required because the library protects itself against it).

Which does not change the fact that since NextJS gives information that it supports Safari 12+, it also expects it.

from next.js.

icyJoseph avatar icyJoseph commented on August 23, 2024

Buffer doesn't exist in browsers though.

It is not just Buffer usage that triggers browserification of Buffer, often usage of crypto, or some Node.js modules, does as well.

Kind of a gray area situation here, can you try out on Safari 14, if the latest buffer (v6) npm package, does work? does v4 work?

from next.js.

fraitag avatar fraitag commented on August 23, 2024

Unfortunately, I wasn’t able to build Next.js correctly when I swapped out the Buffer version. I need more time for that. Would anyone else be willing to help?

My error:
image

from next.js.

icyJoseph avatar icyJoseph commented on August 23, 2024

Err, I meant more like:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <script src="https://bundle.run/[email protected]"></script>
    <div>Hi</div>
</body>

</html>

And open that in your Safari 14 browser. Try with 6.0.3 and 5.7.1, as well. Do you see the issue at all?

from next.js.

fraitag avatar fraitag commented on August 23, 2024

From bundle.run I do not have any errors, tested on Mojave Safari 12.1
image

from next.js.

icyJoseph avatar icyJoseph commented on August 23, 2024

Oh that's really, not what I had expected... 🤔

I searched for the compile PR from 3 years ago, and found that it was "buffer": "5.6.0", that was initially vendored in:

https://github.com/vercel/next.js/pull/32627/files#diff-9c1a3867443c54525b4f24ef171f231a6e8bb065ffc8b7b62c4843d5ff62dd42R81

but that worked on your test...

If you copy the code from, https://github.com/vercel/next.js/blob/canary/packages/next/src/compiled/buffer/index.js#L5, and put it in a file.js and make a script pointing to it, rather than bundle.run, what do you get?

from next.js.

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.