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

@typhoslabs/shopify-hmac

v2.0.0

Published

Simple HMAC validator for Shopify OAuth requests.

Downloads

4

Readme

shopify-hmac

Simple HMAC validator for Shopify OAuth requests.

Usage

var hmac = require('@typhoslabs/shopify-hmac');
var error;

// query must be an object
var query = { shop:"typhoslabs.myshopify.com" ... };
// secret must be a string
var secret = "i am an app secret - change me";

// test querystring values
if((error = hmac(query, secret))){
    return console.error(error);
}

// valid because no error was returned
console.log("query is good");

Details

function shopifyHMAC(query, secret)

parameters

  • query: An object of string values. Must include "shop", "timestamp", and "hmac." It will ignore the "hmac" and "signature" fields when building the querystring to be hash as well as any null fields.
  • secret: Must be your app's secret

returns

  • error: only if an error occurred. DevErrors inicate something was misconfigured. UserErrors indicate that query had missing or invalid values.

Spoofing/Testing

var hmac = require('@typhoslabs/shopify-hmac');
var crypto = require('crypto');

const MY_APP_SECRET = "appsecret";

var query = {
    // include a valid shopify shop url
    shop: 'my-shop.myshopify.com',
    // include a current timestamp 
    // note: Shopify sends the time in seconds
    timestamp: Math.round(Date.now() / 1000)
};

var hmac = crypto
    // hash with your secret
    .createHmac('sha256', MY_APP_SECRET)
    // use the exposed getOAuthQueryString() function to build
    // a valid query string to hash
    .update(hmac.getOAuthQueryString(query))
    // needs to be hexidecimal
    .digest('hex');

// add the hmac to the query
query.hmac = hmac;

// check if you want...
var err = hmac(query, MY_APP_SECRET);