I observed that after executing npm upgrade
once, my Node application unexpectedly crashed. Running npm list --outdated
then revealed that certain modules were still not refreshed. I ended up invoking npm upgrade
a couple more times before every dependency was properly current. Is this iterative updating behavior something typical in Node project maintenance?
seems norml, node can miss some deps on the first npm upgrade. its not uncommon to run it a couple of times so everything syncs up correctly.