Express JS install giving many venerabilities, incl 'critical'

I'm following a tutorial which is about to get into how to use Express JS for setting up a server, and I went to install Express and got back all kinds of venerabilities, including critical. I don't have anything else installed except for 'nodemon' for auto-restarting the server upon save. Does any one know why I'm getting all of these venerabilities?/If/How to address them?
4 Replies
Joao
Joao13mo ago
You can run npm audit to see a more detailed list. But the npm system to label vulnerabilities is broken and does not necessarily reflect the reality so it's best to ignore those warnings. Not because they are automatically false, but it's just not reliable indicator of how many or how severe the vulnerabilities really are.
Joao
Joao13mo ago
npm audit: Broken by Design
Found 99 vulnerabilities (84 moderately irrelevant, 15 highly irrelevant)
Joao
Joao13mo ago
This is from a couple of years ago so things may have changed since.
thethingisback
thethingisback13mo ago
alright, well looking at them I don't see anything I've done in my own code, so I guess I'lll just ignore it then