Is there some URL from which I can download a given package from npm (as a tarball or something)? I need the exact files that were originally uploaded to npm.
Using
Running npm pack PACKAGE_NAME will download a tarball of any package on npm.
npm pack PACKAGE_NAME
To extract it, just run tar -xzf DOWNLOADED_FILE.tgz
tar -xzf DOWNLOADED_FILE.tgz
npm pack react
then extract:
tar -xzf react-16.6.3.tgz