-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Milestone
Description
export {}
import { getGithubTopics } from "github-api-get";
export async function getGithubTopicsfromgithub() {
const loginName = "roebi";
const projectName = "01-01-vanilla-HTML5-starter-page";
const infoLog = true;
const isProd = true;
const githubTopics = getGithubTopics(loginName, projectName, infoLog, isProd) as Promise<String[]>;
const realGithubTopics = await githubTopics;
console.group("realGithubTopics");
console.info("realGithubTopics");
console.info(realGithubTopics);
console.groupEnd();
}
await getGithubTopicsfromgithub();
see
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation