🔁 A REPL (read–eval–print loop) for GitHub Apps
- Uses the Node
repl
module 🔁 - With experimental
await
support enabled 👌 - Loads your GitHub App and exposes it as
app
in a REPL session ⚡ - So you can easily start playing around with it interactively
☺️
I like using a REPL to experiment with ideas and get comfortable with an API before delving into actual code. This removes some of the boilerplate code required to start working with GitHub Apps in a REPL.
npm install -D github-app-repl
A couple of environment variables are required for configuration:
APP_ID
: This should be set to the ID of your GitHub App.- This is available from the settings page of your GitHub App, as
App ID
.
- This is available from the settings page of your GitHub App, as
PRIVATE_KEY_PATH
: This should be set to a local filesystem path to a private key for your GitHub App.- More information on generating and downloading private keys for your GitHub Apps is available in the documentation.
These environment variables can either be set directly, or via a .env
file that follows this example.
npx github-app-repl
app.id
: GitHub App IDapp.name
: GitHub App Nameapp.description
: GitHub App Descriptionapp.octokit
: Authenticated@octokit/rest
instance, scoped to your GitHub Appapp.installations()
: Dictionary of GitHub App Installations, keyed by installation account logininstallations
: Pre-loaded dictionary of GitHub App Installations, keyed by installation account logininstallations[:login].octokit
: Authenticated@octokit/rest
instance, scoped to a specific GitHub App installationinstallations[:login].graphql
: Authenticated@octokit/graphql
instance, scoped to a specific GitHub App installation
await installations[owner].octokit.issues.create({owner, repo, title})
await installations[owner].graphql(`query lastIssues($owner: String!, $repo: String!, $num: Int = 3) {
repository(owner:$owner, name:$repo) {
issues(last:$num) {
edges {
node {
title
}
}
}
}
}`, {
owner: 'octokit',
repo: 'graphql.js'
}
})