n1c0
Phoenix 1.6 & esbuild having issues with web3
Hello everyone,
I am upgrading a phoenix 1.5 app to 1.6 and I am running into some issues with the way npm packages are handled with esbuild.
I am trying to use the web3 js library to connect a wallet via metamask and the likes…it works perfectly with webpack/phoenix 1.5 but when I use esbuild and phoenix 1.6 I am facing the following issue:
index.js:20 Uncaught ReferenceError: require is not defined
at node_modules/web3-core-requestmanager/lib/index.js (index.js:20)
at __require (app.js:26)
at node_modules/web3-core/lib/index.js (index.js:22)
at __require (app.js:26)
at node_modules/web3/lib/index.js (index.js:29)
at __require (app.js:26)
at app.js:159
JS & its non-sense not really my area of expertise, tried a few stuff, adding some npm packages etc…but in vain
here’s my config.exs section on esbuild:
config :esbuild,
version: "0.14.10",
default: [
args:
~w(js/app.js --bundle --sourcemap --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*),
cd: Path.expand("../assets", __DIR__),
env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)}
]
and my package.json
{
"scripts": {
"deploy": "NODE_ENV=production npx tailwindcss --postcss --minify --input=css/app.css --output=../priv/static/assets/app.css"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"postcss": "^8.3.11",
"postcss-cli": "^9.0.2",
"postcss-import": "^14.0.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"@tailwindcss/aspect-ratio": "^0.3.0",
"@tailwindcss/forms": "^0.3.4",
"@tailwindcss/typography": "^0.4.1",
"@walletconnect/web3-provider": "^1.7.0",
"alpinejs": "^3.5.2",
"eth-sig-util": "^3.0.1",
"nprogress": "^0.2.0",
"tailwindcss": "^2.2.19",
"web3": "^1.6.1",
"web3modal": "^1.9.5"
}
}
I have seen the doc on using plugins for esbuild in the phoenix hexdocs pages but no idea on how to do that and if it will solve my issue.
Thanks in advance!
Trending in Questions
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Hello !
We want new/edit form pages to POST/PUT to their own URL rather than the resources REST defaults (post /things, put /things/:id)...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Patch Package: OTP 29.0.5
Git Tag: OTP-29.0.5
Date: 2026-08-04
Trouble Report Id: OTP-...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #phoenix_html
- #iex
- #blog-post
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #performance
- #security










Most Liked
barberj
Running into same issue. Did you get this resolved?
My project is fairly vanilla. New starting from phx 1.6.
package.jsonconfig/config.exsIn my app.js just importing
import "web3"n1c0
Hi there,
I have found a workaround maybe not the most elegant…I gathered the minified js libraries into the
vendorfolder and put that in myapp.jsIt works fine like that but f you find another solution, please let us know as with this one I need to manually update for new versions of the libraries…
baldmountain
There is a better way to fix this. Update your esbuild config like this:
Note that there are two entries for
NODE_PATH. One for deps and one for node_modules. You can then add whatever Javascript and CSS to node_modules and then import it into app.js and app.css.