scripts from other providers I would normally include in my application in the following way:
<script src="https://apis.google.com/js/api.js"></script>
However I was wondering whether there is any drawback to just open the url: https://apis.google.com/js/api.js and copy/paste the script inside my application
The advantage for this would be for example when using React - to just copy/paste the script inside the particular component that is using it.
However I'm not sure whether there are any drawbacks - for example whether these scripts might be updated sometimes by third parties (say Google) and it will stop working as I'll have old version copied locally.
Any idea whether there would be any problems with just copy/paste external third parties scripts locally into my code (say React component)?