I have been following many react tutorials(just getting started). In all of them, node modules are locally installed within each project. But I don't want to download node modules all the time for each project. I want to install node modules globally, which reside in the following location in windows (C:\Users\username\AppData\Roaming\npm\node_modules), and then refer them for all of my react projects. Whenever I do projects, I have to download all dependencies of node modules. Without copying the node_modules, Is there any way to share the central node_modules in multiple projects?