Skip to content

Instantly share code, notes, and snippets.

@saisankargochhayat
Last active September 17, 2017 16:46
Show Gist options
  • Save saisankargochhayat/6dedde6f49b0d061da9564740ca981ac to your computer and use it in GitHub Desktop.
Save saisankargochhayat/6dedde6f49b0d061da9564740ca981ac to your computer and use it in GitHub Desktop.
const GitHubApi = require("github");
let github = new GitHubApi();
github.gitdata.getTags({
owner: "antarctica",
repo: "bas-style-kit"
},
function (err, res) {
console.log(JSON.stringify(res));
}
);
//Replace antartica with owner name and rep bas-style-kit with repo name.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment