Edits history of script submission #24 for ' Get Repo Star Count (github)'

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    import { Octokit } from "https://cdn.skypack.dev/@octokit/rest";
    
    /*
    @param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
    example:
    {
        auth: github_api_key
    }
    */
    
    export async function main(
        gh_auth: wmill.Resource<"github">,
        owner: string,
        repo: string,
    ) {
        const octokit = new Octokit({ auth: gh_auth.token });
        const response = await octokit.rest.repos.get({
            owner,
            repo,
        });
    
        var repo_list = {};
    
        const arr = response.data;
        repo_list[arr.name] = arr.stargazers_count;
    
        return repo_list;
    }
    

    Submitted by adam186 1160 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
    
    /*
    @param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
    example:
    {
        auth: github_api_key
    }
    */
    
    export async function main(
        gh_auth: wmill.Resource<"github">,
        owner: string,
        repo: string,
    ) {
        const octokit = new Octokit({ auth: gh_auth.token });
        const response = await octokit.rest.repos.get({
            owner,
            repo,
        });
    
        var repo_list = {};
    
        const arr = response.data;
        repo_list[arr.name] = arr.stargazers_count;
    
        return repo_list;
    }
    

    Submitted by adam186 1160 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/mod.ts";
    import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
    
    /*
    @param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
    example:
    {
        auth: github_api_key
    }
    */
    
    export async function main(
        gh_auth: wmill.Resource<"github">,
        owner: string,
        repo: string,
    ) {
        const octokit = new Octokit(gh_auth);
        const response = await octokit.rest.repos.get({
            owner,
            repo,
        });
    
        var repo_list = {};
    
        const arr = response.data;
        repo_list[arr.name] = arr.stargazers_count;
    
        return repo_list;
    }
    

    Submitted by adam186 1160 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/index.ts";
    import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
    
    /*
    @param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
    example:
    {
        auth: github_api_key
    }
    */
    
    export async function main(
        gh_auth: wmill.Resource<"github">,
        owner: string,
        repo: string,
    ) {
        const octokit = new Octokit(gh_auth);
        const response = await octokit.rest.repos.get({
            owner,
            repo,
        });
    
        var repo_list = {};
    
        const arr = response.data;
        repo_list[arr.name] = arr.stargazers_count;
    
        return repo_list;
    }
    

    Submitted by adam186 1162 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/index.ts";
    import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
    
    /*
    @param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
    example:
    {
        auth: github_api_key
    }
    */
    
    export async function main(
        gh_auth: wmill.Resource<"github">,
        owner: string,
        repo: string,
    ) {
        const octokit = new Octokit(gh_auth);
        const response = await octokit.rest.repos.get({
            owner,
            repo,
        });
    
        var repo_list = {};
    
        const arr = response.data;
        repo_list[arr.name] = arr.stargazers_count;
    
        return repo_list;
    }
    

    Submitted by adam186 1197 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/index.ts";
    import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
    
    /*
    @param: {wmill.Resource<"github">} gh_auth - Resource containing Github Auth API Key
    example:
    {
        auth: github_api_key
    }
    */
    
    export async function main(
        gh_auth: wmill.Resource<"github">,
        owner: string,
        repo: string,
    ) {
        const octokit = new Octokit(gh_auth);
        const response = await octokit.rest.repos.get({
            owner,
            repo,
        });
    
        var repo_list = {};
    
        const arr = response.data;
        repo_list[arr.name] = arr.stargazers_count;
    
        return repo_list;
    }
    

    Submitted by rossmccrann 1411 days ago

  • deno
    import * as wmill from "https://deno.land/x/[email protected]/index.ts";
    import { Octokit } from "https://cdn.skypack.dev/octokit?dts";
    
    /*
    @param: {wmill.Resource} gh_auth - Resource containing Github Auth API Key
    example:
    {
        auth: github_api_key
    }
    */
    
    export async function main(
        gh_auth: wmill.Resource<"c_github_auth">,
        owner: string,
        repo: string,
    ) {
        const octokit = new Octokit(gh_auth);
        const response = await octokit.rest.repos.get({
            owner,
            repo,
        });
    
        var repo_list = {};
    
        const arr = response.data;
        repo_list[arr.name] = arr.stargazers_count;
    
        return repo_list;
    }
    

    Submitted by rossmccrann 1441 days ago