Skip to content

Instantly share code, notes, and snippets.

@stevekrouse
Created October 10, 2017 21:28
Show Gist options
  • Select an option

  • Save stevekrouse/08257bffcc040ef1e26a729d5dcb717e to your computer and use it in GitHub Desktop.

Select an option

Save stevekrouse/08257bffcc040ef1e26a729d5dcb717e to your computer and use it in GitHub Desktop.
const githubProjectData = (repo, path) => fetch(
'https://exec.clay.run/steve/github-project-data', {
method: "POST",
body: JSON.stringify({
repo: repoPath,
path: path
})
})
.then(response => response.json())
.then(json => json /* do something here */)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment