ichard26 / next-pr-number

Get the number the next pull request will be assigned for a public GitHub repository.
https://ichard26.github.io/next-pr-number/
MIT License
11 stars 1 forks source link

Drop octokit dependency #1

Closed ichard26 closed 3 years ago

ichard26 commented 3 years ago

octokit is quite a heavy dependency:

Screenshot from 2021-04-04 13-26-10

(requests between core to wrappy.js is all octokit related)

I used it because I didn't want to implement this part of tool from scratch (I was lazy!), but Next PR Number only uses it for one kind of HTTP requests. Other than substituting the owner and name into the URL, it's fixed. Using native APIs from the browser directly will take some work, but it should reduce page load times significantly, enough to be worth it.

ichard26 commented 3 years ago

Implemented by https://github.com/ichard26/next-pr-number/commit/960d549c0b0a8d303d7a8c8e0ea2c9343dc7bb13.