Skip to content

Instantly share code, notes, and snippets.

View TangoPJ's full-sized avatar
🎯
Focusing

Rail TangoPJ

🎯
Focusing
View GitHub Profile
import axios from "axios";
const getInfoFromGit = async (urls) => {
const response = [];
for (const url of urls) {
try {
const {
data: { stargazers_count, forks, name, html_url },
} = await axios.get(`https://api.github.com/repos/${url}`);
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint"
}