npm.io
0.4.0 • Published 4 months ago

@byu-oit-sdk/fastify-jwt

Licence
Apache-2.0
Version
0.4.0
Deps
4
Size
32 kB
Vulns
0
Weekly
0

@byu-oit-sdk/fastify-jwt

Requirements:

  • Node.js 20+
  • npm v9+
  • Fastify v5

Breaking Changes

  • @byu-oit-sdk/fastify-jwt now requires Node.js 20 or newer.
  • @byu-oit-sdk/fastify-jwt now targets Fastify 5.

Installing

npm install @byu-oit-sdk/fastify-jwt

Introduction

This fastify middleware allows for verification and decoding of JWTs.

Options

Along with the options for the CreateJwt() function (see docs for jwt package), the following options can be passed in when registering the middleware with fastify.

Option Type Default Description
prefix string - Used to specify what route the middleware is registered with.
transformer JwtPayloadTransformer<Payload, Transformer> - The function that you will use for manipulating the JWT you are authenticating.
getJwt function - A function for getting the JWT from the request. By default, the JWT is pulled from the auth header.
validate boolean - Boolean used to signify if we want to validate the jwt if true, or just decode it if false.

Usage

TypeScript Coding Example
import Fastify from 'fastify'
import { FastifyJwtProvider } from '@byu-oit-sdk/fastify-jwt'
import { Type } from '@sinclair/typebox'

// set up fastify server
const app = Fastify({
  logger: true
})

// declare transformer
const transformer = (payload: { 'http://byu.edu/claims/client_preferred_first_name': string }): { preferred_first_name: string } => ({ preferred_first_name: payload['http://byu.edu/claims/client_preferred_first_name'] })

// register the middleware with Fastify
await app.register(FastifyJwtProvider, { schema: Type.Object({ }, { additionalProperties: true }), key: '', validate: false, transformer })

// declare endpoint
app.get('/', async (request, reply) => {
  return request.caller
})

// send a request
const response = await app.inject({
  method: 'GET',
  url: '/',
  headers: {
    Authorization: /* A valid token */
  }
})

console.log(response)