1.0.6 • Published 2 years ago

@hemyn/github-api v1.0.6

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

github-api

npm install @hemyn/github-api

usage

// create repository
const { GitHub } = require("../lib");

const github = new GitHub({
  token: 'your token',
});

github.createRepository({
  name: "svelte-count",
  template_owner: "Foreinyel",
  template_repo: "svelte-component-template",
});