-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck-languages.ts
101 lines (88 loc) · 2.75 KB
/
check-languages.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import { graphql } from "@octokit/graphql";
const GITHUB_TOKEN = process.env.GITHUB_TOKEN;
if (!GITHUB_TOKEN) {
throw new Error("Missing required environment variables (GITHUB_TOKEN).");
}
const graphqlWithAuth = graphql.defaults({
headers: {
authorization: `token ${GITHUB_TOKEN}`,
'user-agent': 'neptun-repository-fetcher/1.0',
},
});
async function fetchLanguagesWithPopularRepos() {
const result: {
search: {
repositories: Array<{
nameWithOwner: string;
primaryLanguage?: {
name: string;
} | null;
stargazerCount: number;
} | null>;
};
} = await graphqlWithAuth(`
query getLanguages {
search(
query: "stars:>1000 sort:stars-desc"
type: REPOSITORY
first: 100
) {
repositories: nodes {
... on Repository {
nameWithOwner
primaryLanguage {
name
}
stargazerCount
}
}
}
}
`);
const languages = new Map<string, {
count: number;
repositories: Array<{
name: string;
stars: number;
}>;
}>();
for (const repo of result.search.repositories) {
if (repo?.primaryLanguage?.name) {
const langData = languages.get(repo.primaryLanguage.name) || {
count: 0,
repositories: []
};
langData.count++;
langData.repositories.push({
name: repo.nameWithOwner,
stars: repo.stargazerCount
});
languages.set(repo.primaryLanguage.name, langData);
}
}
return Array.from(languages.entries())
.map(([name, data]) => ({
name,
repositoryCount: data.count,
repositories: data.repositories
}))
.sort((a, b) => b.repositoryCount - a.repositoryCount);
}
async function main() {
try {
console.log('🔍 Fetching languages with popular repositories...\n');
const languages = await fetchLanguagesWithPopularRepos();
console.log(`Found ${languages.length} languages in top 100 repositories:\n`);
languages.forEach(lang => {
console.log(`📚 ${lang.name} (${lang.repositoryCount} repositories):`);
lang.repositories.forEach(repo => {
console.log(` ⭐ ${repo.name} (${repo.stars.toLocaleString()} stars)`);
});
console.log('');
});
} catch (error) {
console.error('❌ Error:', error);
process.exit(1);
}
}
main();