According to @Seblor's advice, the first step is to open the index.html
file using Chrome Developer tools or a similar tool.
Within the file, you may come across code snippets like:
<script src="/Scripts/dist/client.bundle.12345.0.0.js"></script>
<script src="/Scripts/dist/LICENSE.js"></script>
or
<script src="https://12345.cloudfront.net/dist/js/main-react-12345.js"></script>
<script src="https://12345.cloudfront.net/dist/js/vendor-12345.js"></script>
You can navigate to either LICENSE.js
or vendor-12345.js
. Typically, LICENSE.js
is more readable compared to the vendor file, but both serve the purpose.
My usual approach involves searching for keywords like @license
, @author
, @copyright
, and Copyright
to identify the libraries being utilized.