Hi, this is for the external project Server-Side API Calls to External APIs to connect my RESTful restuarants web app to the Supabase api for building a database. When I try to run my backend, I get this notice that the ‘punymode’ module is deprecated and to use a userland alternative instead:
PS C:\Users\Adam\Documents\Projects\restful-rest-external-api\backend> npm run start
[email protected] start
nodemon ./bin/www
[nodemon] 3.1.4
[nodemon] to restart at any time, enter rs
[nodemon] watching path(s): .
[nodemon] watching extensions: js,mjs,cjs,json
[nodemon] starting node ./bin/www
(node:16836) [DEP0040] DeprecationWarning: The punycode
module is deprecated. Please use a userland alternative instead.
(Use node --trace-deprecation ...
to show where the warning was created)
Anyone know what I can do to fix this? I’ve run npm audit fix --force but i don’t really understand what i’m doing!