Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Browser compatibility issues within used modules #17

Open
dogukanakkaya opened this issue Jun 9, 2023 · 0 comments
Open

Browser compatibility issues within used modules #17

dogukanakkaya opened this issue Jun 9, 2023 · 0 comments

Comments

@dogukanakkaya
Copy link

This module uses a lot of Node.js compatible packages like node-fetch, buffer. Not directly but within used packages. For example when you try to build the project with Vite:

RollupError: "promisify" is not exported by "__vite-browser-external", imported by "node_modules/lucid-cardano/node_modules/node-fetch/src/body.js".


I solved this issue by below configuration in vite.config.ts

build: {
    rollupOptions: {
      external: [...builtinModules, ...builtinModules.map((m) => `node:${m}`)]
    }
},

But still different issues continues. After this build succeeds but if you run the built file you're having this error in console:

Uncaught TypeError: Failed to resolve module specifier "buffer". Relative references must start with either "/", "./", or "../".

I tried lots of different configuration to get pass these issues but no success. Last thing I tried was putting an import map in index.html like this:

<script type="importmap">
      {
        "imports": {
          "buffer": "https://unpkg.com/[email protected]"
        }
      }
</script>

Which again gives warnings Module "buffer" has been externalized for browser compatibility. Cannot access "buffer.Buffer" in client code.

This module is intended to be used in the browser but it has dependency to packages that uses Node modules which brings issues. Vite also mentions in their docs:

We recommend avoiding Node.js modules for browser code to reduce the bundle size, although you can add polyfills manually. If the module is imported from a third-party library (that's meant to be used in the browser), it's advised to report the issue to the respective library.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant