vercel / next.js

The React Framework
https://nextjs.org
MIT License
127.06k stars 27k forks source link

Buffer polyfill not work on ios lower then 14 #66115

Open fraitag opened 5 months ago

fraitag commented 5 months ago

Link to the code that reproduces this issue

https://codesandbox.io/p/devbox/floral-snowflake-cyrx5f

To Reproduce

Add something with Buffer on client side Try open page on IOS lower then 14 Console report the error: image

Current vs. Expected behavior

The polyfill should work on versions supported by Next.js.

Provide environment information

Operating System:
  Platform: linux
  Arch: x64
  Version: #1 SMP Fri Apr 2 22:23:49 UTC 2021
  Available memory (MB): 15701
  Available CPU cores: 8
Binaries:
  Node: 20.13.1
  npm: 10.5.2
  Yarn: 1.22.22
  pnpm: N/A
Relevant Packages:
  next: 14.2.3 // Latest available version is detected (14.2.3).
  eslint-config-next: 14.2.3
  react: 18.2.0
  react-dom: 18.2.0
  typescript: 5.4.5
Next.js Config:
  output: N/A

Which area(s) are affected? (Select all that apply)

Not sure, Webpack

Which stage(s) are affected? (Select all that apply)

next dev (local), next build (local), next start (local)

Additional context

No response

icyJoseph commented 5 months ago

Related issue (?) https://github.com/feross/buffer/issues/359

fraitag commented 5 months ago

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.

icyJoseph commented 5 months ago

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

fraitag commented 5 months ago

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.

icyJoseph commented 5 months ago

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?

fraitag commented 5 months ago

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

icyJoseph commented 5 months ago

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/buffer@4.9.2"></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?

fraitag commented 5 months ago

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

icyJoseph commented 5 months ago

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?