how-was-your-week

node v0.12.18
version: 0.0.2
endpointsharetweet
//var requestPromise = require('request-promise'); //var githubStatusJson = await requestPromise('https://api.github.com/search/repositories?q=javascript&sort=stars&order=desc'); // I'd like to list all pull request created by me this week in SidestepTechnologies // The output should be: // - [repo] - [(PR|live)] - Pull request title // where PR: is open pull request, live - merged pull request // Add GITHUB_API_TOKEN to you tonicdev ENVs: https://tonicdev.com/settings/environment const ghGot = require('gh-got'); await ghGot('https://api.github.com/users/vkinelev', { token: process.env.GITHUB_API_TOKEN });
Loading…

no comments

    sign in to comment