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 🙏

© 2026 – Pkg Stats / Ryan Hefner

elbdev-shopify-kickstart

v2.0.6

Published

XXX Theme for Vendor

Readme

elbDev Shopify Theme-Development Workflow

This repository contains the source code of a shopify theme, based on the new Shopify theme CLI introduced with the OS 2.0 update. Please note that the webpack configuration is a work in progress and there is potential for further optimizations.

Introduction

This repository provides the necessary files and workflow to develop and deploy the theme efficiently.

Requirements for Installation

  • Shopify CLI (Version > 3.0.0)
  • Node.js and Yarn
  • Python 3

Installation

Add the package to the package.json of your project:

yarn add -D elbdev-shopify-kickstart

Add the following scripts to your package.json file:

 "build": "webpack --mode=development",
  "dev": "webpack --watch --mode=development",
  "serve": "python3 ./node_modules/elbdev-shopify-kickstart/.scripts/run_serve.py",
  "deploy": "python3 ./node_modules/elbdev-shopify-kickstart/.scripts/run_deploy.py",
  "pull-templates": "python3 ./node_modules/elbdev-shopify-kickstart/.scripts/run_pull_templates.py",
  "clean-themes": "python3 ./node_modules/elbdev-shopify-kickstart/.scripts/run_clean_themes.py",
  "jira": "python3 ./node_modules/elbdev-shopify-kickstart/.scripts/run_jira.py",
  "commit": "python3 ./node_modules/elbdev-shopify-kickstart/.scripts/run_commit.py"

Ensure Project Structure

Make sure the following files and directories are present in the root of your project:

  1. webpack.config.js: Your Webpack configuration file.
  2. .shopifyconfig: A configuration file containing your Shopify store URL. Example content:
STORE_URL=https://your-shop.myshopify.com
  1. src/: A directory containing your source files. The expected structure is:
src/
├── js/
│   └── custom.js
└── scss/
    ├── modules/
    └── custom.scss

Run Development and Build Commands

Use the following commands to manage your development and deployment workflow:

  • yarn dev: Starts Webpack in watch mode for development.
  • yarn build: Builds the theme assets in development mode.
  • yarn serve: Starts the Shopify theme development server.
  • yarn deploy: Deploys the theme to Shopify.
  • yarn pull-templates: Pulls specific theme templates from Shopify.
  • yarn clean-themes: Cleans up unused themes from your Shopify store.