Hello, I was reading a bit about the difference between npm and npx. From what I've understood, npx allows us to run a command directly without having to specify the path to the node_modules?
Is this the only advantage it provides? With npm we would have to provide the path to the node_modules files?
I also read something, if we run a particular command with npx and we can't find the package installed; is the packages installed temporarily then deleted after, like when we interupt the terminal?