I am trying to run the Angular 2 seed application. Unfortunately npm install
places a massive numbers of files into node_modules
which I presume I also have to serve alongside the seed application code.
I don't want to have to serve all these static files if I only need a few for the app to work. Is there a way to only server which ones I actually need?
The reason I ask is because the Google App Engine development environment (dev_appserver.py
) places a limit on the number of files it can serve and the production environment has a limit on the combined size of files that can be uploaded. It would be ashamed to upload megabytes of unnecessary files.