Hi Jim, Look into Yarn <https://yarnpkg.com/>. It uses its own cache, and takes the sting out of downloading the whole darn thing over and over again. However, there is a way to do what you ask.
Create a 'top' folder called something like 'My_angular2ProjectsThatShare'. create a package.json in there that holds the 'shared' part off all your projects. Npm install in there. Then create your projects below that folder, and take out the shared parts out of the package.json before you npm/yarn install in the project folder. The package system will retrieve the shared parts out of a folder above the one you are in, using the shared npm_modules in the My_angular2ProjectsThatShare folder. Hope this helps you a bit, Regards Sander -- You received this message because you are subscribed to the Google Groups "Angular" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
