npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

shopify-jwt-auth-verify

v2.0.1

Published

A single function to be used as a verification for the new JWT app auth, used on the backend to verify FE requests incoming.

Downloads

584

Readme

Shopify App JWT Verification

Known Vulnerabilities Builds Test & Cover jest


BREAKING CHANGES IN V2.0

The function now requires the app key to be passed along with the app secret please see the re shuffle in parameter order to facilitate this. It should be a small change.

This function simply verifies the authenticity and expiry time on an app bridge created JWT header. This is used to verify cookieless sessions between abstracted app frontend and backend. It does not require external dependencies but does require the the node version covers crypto and bufferFrom. We have suggested 10+ and tested as such.

Designed to be small and dependency free See bundle size impact on BundlePhobia

Primary use cases would be in a custom middleware for your backend routes. Built and tested for usage along side NextJS Api routes, however should translate to all use cases.

It will simply return a boolean: true let other stuff happen or false stop stuff from happening.

NOTE THIS IS IN NO WAY SUPPORTED OR BUILT BY SHOPIFY

This was built as tooling for my implementations of the cookieless authentication, which is awesome and such a step forward. If you have any issues please raise them on github or ping me ont he partners slack or twitter.

Shopify Documentation

find out more about Shopify session token authentication

TL;DR Example


// Require or Import
const isVerified = require("shopify-jwt-auth-verify")['default']

// OR

import isVerified from 'shopify-jwt-auth-verify'


// use it by passing it the session token from the header ( or getSessionToken) and App secret
const valid = isVerified(headerBearer, appSecret, appKey)

Typescript

This function has types supplied and was written in typescript if that is of interest to any one.

Notes:

Requirements: Node 10+

Tested Node Versions

  • 10+
  • 12+
  • 14+
  • 15+
  • 16+

API

isVerified

const isVerified = (authorization: string, secret: string, cb?: Function ) => boolean

IsVerified takes three required parmeters, and two optional parameters

  1. authorization - REQUIRED - the jwt passed into the header on the request
  2. secret - REQUIRED - app secret ( partners.shopify.com)
  3. key - REQUIRED - app key (partners.shopify.com)
  4. callback - OPTIONAL - callback called if is verified and passed an object of the header, payload and signature.
  5. returnCallback - OPTIONAL - a boolean that if tru will chance the return of callback function, to allow chaining.

The call back is there if needed, but serves little purpose unless you need to extend or assert agains the function.

Returns

  1. Boolean - true = valid / false = set fire to the ships and back out of the request.

Example as a NextJS Api route middleware

Below is an example of usage in next js api routes to act as the core function in the middleware protecting your backend routes.

// Middle Ware : /pages/api/_middleware/jwtVerified 


import { NextApiRequest, NextApiResponse } from 'next';
import isVerified from 'shopify-jwt-auth-verify'

const jwtVerifiedConnection = (handler) => { 

  return async(req: NextApiRequest, res: NextApiResponse) => {

    // The authorization header is required for all requests to the api. 
    if(!req.headers.authorization) {
      res.status(403).json({message: 'No bearer supplied, are you using the correct fetch method'})
    }
    
    const verified = isVerified(req.headers.authorization, process.env.SHOPIFY_APP_SECRET, process.env.SHOPIFY_APP_KEY)
    
    if(!verified) {
      return res.status(401).json({message: 'JWT is invalid.'})
    }
    
    // continue on to the route requested. 
    return handler(req, res)
  }
}

export default jwtVerifiedConnection


// Api Route : /pages/api/logme.ts

import { NextApiRequest, NextApiResponse } from 'next';
import jwtVerifiedConnection from '../../_middleware/jwtVerified';

const logme =  async (req: NextApiRequest, res: NextApiResponse) => {

  return res.status(200).json({
    body: req.body,
  })
}


export default jwtVerifiedConnection(logme)

Share it forward!

If you found this useful please drop a message on github or twitter would love to hear from any one in the community!