Home > Net >  Fetch dependencies from a project in Github using CLI
Fetch dependencies from a project in Github using CLI

Time:01-17

I would like to know - Are there any commands for GitHub, allowing me to fetch the dependencies of a project in github?

At Github, under 'Insights' tab, I may look for the dependencies, by pressing the 'Dependencies Graph' button, and that displays all the dependencies for this project.

My qustion is - Can I write a scrypt, to fetch these dependencies?

I tried to navigate in postam and make a GET request to the url 'https://github.com/-User-/-Project-/network/dependencies' and I recive an 404 response.

But when I put the same url in chrome, I can see the Dependencies Graph for that project.

CodePudding user response:

You can’t. There are now API calls available for this information at the moment. I’ve been wanting to get that information myself as well

  • Related