Use pre-built apps to extend GitHub,
and easily build and share your own.
Check out these hosted apps that extend your project on GitHub. They're all open source and free to use on any project.
Discover dozens of apps that extend GitHub and improve your workflow.
Explore more appsApps are easy to write and share.
Receive webhooks and use the authenticated client to access the GitHub API. Granular permissions give each app access only to the data it needs and nothing more.
Focus on what you want to build. A simple API—built on the latest ES6 JavaScript features—hides the details you don't care about.
export default (app) => {
app.on('issues.opened', async context => {
const params = context.issue({ body: 'Hello World!' })
await context.octokit.issues.createComment(params)
})
}
Apps are first class actors within GitHub.
Hello World!