(node:13) [DEP0040]
albertojoya
TRIALOP

a year ago

DeprecationWarning: The punycode module is deprecated. Please use a userland alternative instead.

(Use node --trace-deprecation ... to show where the warning was created)

/app/nodemodules/.pnpm/mysql2@3.11.3/nodemodules/mysql2/promise.js:253
How can I solve this error?

View Deploy details

ⓘ Deployment information is only viewable by project members and Railway employees.

1 Replies

paulrdrs
HOBBY

a year ago

Since the error doesn't seem related to a dependency that you control you can either try to override that dependency using your package manager resolutions or ignore it when running node like so

NODE_OPTIONS='--disable-warning=<error code>' <rest of script>

Loading...