1.0.0-beta.16 • Published 21 days ago

@indiekit/endpoint-auth v1.0.0-beta.16

Weekly downloads
-
License
MIT
Repository
github
Last release
21 days ago

@indiekit/endpoint-auth

IndieAuth authentication and authorization endpoint for Indiekit. Grants and verifies access tokens and authenticates users.

Installation

npm i @indiekit/endpoint-auth

Usage

Add @indiekit/endpoint-auth to your list of plug-ins, specifying options as required:

{
  "plugins": ["@indiekit/endpoint-auth"],
  "@indiekit/endpoint-auth": {
    "mountPath": "/authorize",
  },
}

You will also need to set the following environment variables:

  • SECRET - used to sign and verify tokens and salt password
  • PASSWORD_SECRET - hashed and salted password used when signing in. You can generate this value by visiting /auth/new-password

Options

OptionTypeDescription
mountPathstringPath to authorization endpoint. Optional, defaults to /auth.