I am following a tutorial for making an web app with ASP.NET Core using visual studio and it calls to install jQuery and bootstrap dependencies with npm, leading to the following file structure:
In order for me to be able to use the following methods:
However, the proxy on my computer keeps blocking npm, giving me the following error:
npm ERR! code ECONNRESET
npm ERR! errno ECONNRESET
npm ERR! network request to https://registry.npmjs.org/bootstrap failed, reason: read ECONNRESET
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly. See: 'npm help config'
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\[...]debug.log
(I have tried changing the firewall but the domain network settings prevent me from doing so)
Is there any other way for me to be able to install these files manually in order to give me the same file structure so that it can be accessed with the correct methods? Or if not, is there another way around this problem?