Discord.js v13 requires npmv7 to function but glitch is on v6.14.13. How do i upgrade to v7?
1 Like
Hi and welcome to the forum @The_Nance
I’m just looking at this page and I can’t see anything about the npm
version, it looks more to do with the node
version: https://discordjs.guide/additional-info/changes-in-v13.html
To specify node 14, add an engines section to your packages.json like so:
"license" : "ISC",
"engines": {
"node": "14.x"
},
"dependencies" : ...
I think the node 14 version installed on Glitch is 14.17.3
which is newer than 14.6
.
I misread the article above; it requires node 16.6 not 14.6 as I previously thought.
@tleylan has raised this issue in another thread:
1 Like
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.