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

gatsby-starter-shopify

v0.0.1

Published

Shopify PWA starter

Downloads

4

Readme

gatsby-starter-shopifypwa

PRs Welcome

Shopify PWA powered by Gatsby

This will be a POC Shopify PWA using the Storefront API & GatsbyJS.

High Level Project Goals

Speed

Should be as fast but ideally, faster than a normal Shopify experience - especially for slower connection due to service worker.

Highly Customizable Theme and Settings

There should be a number of ways to customize the theme without touching the code such as colors, typography, and settings (show breadcrumbs?, etc.)

Accessible

Out-of-box, the site should be WCAG 2.0 accessible. This means aria tags where needed, AA color contrast, and keyboard accessible navigation with focus styling. This includes things like the gallery.

Code Complete with regular Shopify themes

Should strive to offer the same features as a normal Shopify theme such as easy homepage section content, all the normal content types. See this list of issues which might prevent code complete.

Install

ENV

Copy .env.sample to .env.development and change the items to match your store. Make sure to add all .env keys and values in Netlify

Emails

Customer Active

When sending a customer an active email (invite email), the template utilizes a url pattern that does not currently work with Shopify PWA. To simplify setup, change the following items in the Customer account invite email notification template (Settings > Notifications > Customer Account > Customer account invite or https://YOUR_STORE_NAME.myshopify.com/admin/email_templates/customer_account_activate/edit):

-<td class="button__cell"><a href="{{ customer.account_activation_url }}" class="button__text">Activate your account</a></td>
+{% assign url_parts = customer.account_activation_url  | split: '/' %}
+<td class="button__cell"><a href="{{shop.url}}/account/activate?id={{url_parts[5]}}&token={{url_parts[6]}}" class="button__text">Activate your account</a></td>

Password Reset

Shopify Password Resets urls do not currently work with the Storefront API and are also presented in a sturcture that requires custom Server-Side Routing. To simplify setup, change the following items in the Customer account password reset email notification template (Settings > Notifications > Customer Account > Customer account password reset or https://YOUR_STORE_NAME.myshopify.com/admin/email_templates/customer_account_reset/edit):

-<td class="button__cell"><a href="{{customer.reset_password_url}}" class="button__text">Reset your password</a></td>
+{% assign url_parts = customer.reset_password_url  | split: '/' %}
+<td class="button__cell"><a href="{{shop.url}}/account/reset?id={{url_parts[5]}}&token={{url_parts[6]}}" class="button__text">Reset your password</a></td>

We're basically splitting the reset password url into URL parameters which will make it MUCH easier for Gatsby to understand.

Webhooks

Setup webhooks with Netlify to auto-deploy after product creation, update, and deletion.

  1. Got to https://app.netlify.com/sites/MY_NETLIFY_APP/settings/deploys
  2. Scroll down to Build Hooks and click the Add build hook button.
  3. Create a new Build Hook such as Shopify Product Update.
  4. Go to https://YOUR_STORE_NAME.myshopify.com/admin/settings/notifications and scroll down to Webhooks. Select Create webhook and for Event select Product update for example.
  5. For the URL, enter the one Netlify gave you in step 3.
  6. You can test the Webhook by clicking the Send test notification link and you should see a new build begin in Netlify.
  7. Repeat steps 1 through 6 for any additional Shopify Events that should trigger a new build.

Deploy

Deploy to Netlify

Instructions

  1. Have your Shopify store name (If it's https://shopifypwa.myshopify.com, the store name would be shopifypwa) and access token ready. Enter those as the environment variables after clicking the deploy button above.
  2. Enable Netlify Identity in order to enable the Admin CMS. Go to https://app.netlify.com/sites/YOURAPPNAME/identity and click Enable Identity.

Features (WIP)

The following are planned features. Many of these are not planned for the initial release.

  • [ ] Native-Like Homepage Sections
  • [ ] Page Builder (Easily Build CMS Pages & Category Landing Pages)
  • [ ] Theme Customizer (Colors, Typography, Basic Theme Features On/Off)
  • [ ] Excellent SEO
  • [ ] Rich-Media Cards (Twitter, Facebook)
  • [ ] OOB Analytics Support (GA Ecommerce, GTM)
  • [ ] WCAG AA Accessible
  • [ ] PWA Functionality (Offline, Notifications, Manifest)
  • [ ] Advanced Search (3rd Party Integration)
  • [ ] WebPayments API Support? Shopify Dynamic Checkout?
  • [ ] AR Product Support
  • [ ] Advance Related Products
  • [ ] 3rd Party Reviews Support
  • [ ] 3rd Party Chat Support
  • [ ] Mega Menu
  • [ ] Login/Registration (My Orders)
  • [ ] Order Status Lookup
  • [ ] FAQ Page Template (w/ Typeahead search)