aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/services/github/api.js
diff options
context:
space:
mode:
Diffstat (limited to 'api/services/github/api.js')
-rw-r--r--api/services/github/api.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/api/services/github/api.js b/api/services/github/api.js
index b9bf600..bfaad61 100644
--- a/api/services/github/api.js
+++ b/api/services/github/api.js
@@ -1,7 +1,8 @@
const axios = require('axios')
const baseUrl = 'https://api.github.com'
-function request (options={}) {
+
+async function request (options={}) {
if (typeof options === 'string') {
options = {
url: options
@@ -20,7 +21,11 @@ function request (options={}) {
options.headers.Authorization = `Bearer ${options.token}`
}
- return axios(options)
+ const response = await axios(options)
+
+ console.log(response.headers['x-ratelimit-remaining'])
+
+ return response
}
module.exports = {