-
Notifications
You must be signed in to change notification settings - Fork 11
Description
I actually already have the fix for this, I'm just too lazy to use git so I figured I'd leave a comment.
One of the dependencies, clusterws (cws) deprecated versions 1 and 2 of their package and they no longer work with node versions above 14 (the latest lts is 14 something and the latest is on 16 now). Net64's server uses version 1. To fix this edit package.json and go down to dependencies.
Where you see "@clusterws/cws": "^1"
Change this to
"@clusterws/cws": "3.0.0"
Then run yarn install and it will update it. I've tested it and version 3.0.0 works with the the latest lts (14) and will allow you to keep your node up to date without having to downgrade to 13 or lower.
If the admin sees this you could test it and update package.json's cws to 3.0.0. Again, I'm too lazy to make use git.