UNPKG

node-cli-demo-lbb

Version:

16 lines (14 loc) 377 B
const axios = require("axios") axios.interceptors.response.use(res =>{ return res.data }) async function getRepoList(){ return axios.get('https://api.github.com/orgs/zhurong-cli/repos') } async function getTagList(repo) { return axios.get(`https://api.github.com/repos/zhurong-cli/${repo}/tags`) } module.exports ={ getRepoList, getTagList }