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

@propeller-commerce/create-propeller-shop

v0.7.0

Published

Scaffold a new Propeller Commerce shop in minutes. Templates + prompts + version pinning.

Readme

@propeller-commerce/create-propeller-shop

Scaffold a new Propeller Commerce shop in minutes: pick a stack, pick a mode, pick a CMS, answer a few prompts, and get a working storefront wired to the Propeller GraphQL backend.

Quick start

npx @propeller-commerce/create-propeller-shop@latest my-shop \
  --stack=next \
  --mode=hybrid \
  --cms=strapi

Published under the scoped name @propeller-commerce/create-propeller-shop, so the npx invocation must include the scope. The executable it installs is still create-propeller-shop.

Pick another stack:

npx @propeller-commerce/create-propeller-shop@latest my-vue-shop  --stack=vue  --mode=hybrid
npx @propeller-commerce/create-propeller-shop@latest my-nuxt-shop --stack=nuxt --mode=hybrid

Then:

cd my-shop/frontend   # a no-CMS shop (--cms=none) is flat: cd my-shop
cp .env.local.example .env.local   # .env.example / .env for vue + nuxt
npm install
npm run dev

Stacks

| --stack | Framework | |---|---| | next | Next 16 + React | | vue | Vue 3 + Vite SSR | | nuxt | Nuxt 3 SSR |

Modes

| --mode | Account routes | Portal default | Register form | |---|---|---|---| | b2b | + quotes, authorization, contacts | semi-closed | Contact only | | b2c | universal only | open | Customer only | | hybrid | + quotes, authorization, contacts (gated at runtime) | open | Both |

CMS

--cms=<provider> picks the CMS backend: strapi, prepr, contentful, cms (generic Propeller CMS), or none (default).

  • CMS is Next-only. Only the Next stack ships a CMS engine; --cms on a Vue or Nuxt scaffold prints a notice and proceeds with no CMS.
  • No adapter package to install. Every provider ships inside the Next boilerplate's lib/cms and is selected at runtime from the CMS_PROVIDER env var. Scaffolding with a CMS sets CMS_PROVIDER=<provider> in the shop's .env.local.example and uncomments that provider's credential lines, so you just copy the file to .env.local and fill in the values (a Strapi URL/token, a Prepr access token, or a Contentful Space ID + Delivery API token). See the generated my-shop/cms/README.md for backend setup, and switch providers later by changing CMS_PROVIDER.
  • --cms=none scaffolds the shop flat at the root (no frontend/ split, no cms/ folder); the homepage falls back to its built-in static page and marketing slugs return 404.

Payments

--psp=<provider> picks the payment service provider: mollie, multisafepay, or none (default). Works on all three stacks — every boilerplate ships both integrations and activates one from PAYMENT_PROVIDER.

The unchosen provider is fully removed: its npm package is dropped from package.json and pruned from package-lock.json, its route handlers and server wiring are deleted, and its credential keys are stripped from the env example. The chosen one is pre-set as PAYMENT_PROVIDER (+ the public mirror) — add the API keys and you're live. With --psp=none no PSP package is installed at all and checkout goes straight from "place order" to the thank-you page.

Spare parts

--spare-parts=no removes the /machines section — the contact-only browser over the machines in the company's MY_INSTALLATIONS attribute — including its pages, helpers, route/nav entry, config block and *MACHINE* env keys. Default is yes.

Run npx @propeller-commerce/create-propeller-shop --help for the full flag list, or omit flags to be prompted interactively.

License

MIT