auth-routes
TypeScript icon, indicating that this package has built-in type declarations

0.0.1 • Public • Published

GitHub Auth Routes

Helpful authentication routes for Node.js GitHub integrations

NPM Build Status Codecov

Usage

const { registerAuthRoutes } = require('auth-routes')
 
const app = express()
registerAuthRoutes(app, {
  client_id: process.env.GITHUB_CLIENT_ID,
  client_secret: process.env.GITHUB_CLIENT_SECRET
})
 
// Or pass some options:
registerAuthRoutes(app, {
  loginURL: '/log-me-in',
  callbackURL: '/call-me-back',
  client_id: process.env.GITHUB_CLIENT_ID,
  client_secret: process.env.GITHUB_CLIENT_SECRET
})

Use with Probot

module.exports = app => {
  // Access the Express server that Probot uses
  const expressApp = app.route()
 
  // Register the routes as normal
  registerAuthRoutes(expressApp, {
    client_id: process.env.GITHUB_CLIENT_ID,
    client_secret: process.env.GITHUB_CLIENT_SECRET
  })
}

Options

Name Description Required Default
client_id GitHub App's Client ID -
client_secret GitHub App's Client Secret -
loginURL Login path '/login'
callbackURL Authorization callback URL, for your GitHub App '/login/cb'
afterLogin Where users are redirected to after they've logged in '/'

Package Sidebar

Install

npm i auth-routes

Weekly Downloads

1

Version

0.0.1

License

ISC

Unpacked Size

16.7 kB

Total Files

9

Last publish

Collaborators

  • jasonetco