DEV Community

Discussion on: Tutorial: Sudo commands that you should know as a web developer

Collapse
 
ludder profile image
Tom

Instead of installing packages globally you could also use npx. In that case you're sure to always get the latest version of the package. For example:

npx create-react-app my-app
Enter fullscreen mode Exit fullscreen mode
Collapse
 
christian0cfg profile image
Christian Siemoneit

Thank your for the comment. Very helpful!