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

@conciar/create-vue-shop

v0.1.0

Published

Scaffold a Conciar-compatible headless storefront for Vue (Vue 3 + Vite + Tailwind + Pinia).

Readme

@conciar/create-vue-shop

Scaffold a Conciar-compatible headless storefront for Vue — a clean Vue 3 + Vite + Tailwind + Pinia skeleton wired to the Conciar Connect API, ready to rebrand and ship.

Framework-scoped on purpose: the storefront is built on Pinia stores, composables, and SFCs. Other frameworks would ship as sibling packages (e.g. @conciar/create-react-shop).

npm create @conciar/vue-shop@latest my-shop
# or: npm create @conciar/vue-shop@latest   (prompts for the directory)

You'll be asked for a project name and your Conciar API base URL, Connect API key, and sales-channel key. The CLI scaffolds the app, writes .env.local, and prints the next steps:

cd my-shop
npm install
npm run dev

What you get

A working storefront, no wine/demo domain baggage:

  • Catalogue & detail — product listing with search, filters, pagination; product detail with a generic spec list, tax breakdown, and a compare tray/modal.
  • Cart & checkout — cart drawer + full cart, coupons (single/stackable), automatic promotion badges & discount lines, PostNL pickup-point & delivery-timeframe pickers, server-validated checkout (out-of-stock / price-drift / expired-coupon handling).
  • Customer accounts — OTP login, order history & detail, subscription management.
  • i18nen / nl / fr / de via vue-i18n, all in parity.
  • Conciar core — the API client (src/api/conciar.ts + types), Pinia stores (cart, store config, countries, customer/auth), and composables, decoupled from any specific UI domain.

Configure

.env.local (generated for you) holds the connection:

| Variable | Purpose | | --- | --- | | CONCIAR_API_URL | API base URL — used by the dev proxy in vite.config.ts (server-only) | | CONCIAR_API_KEY | Connect API key (server-only, never bundled) | | CONCIAR_SALES_CHANNEL_KEY | Sales-channel key (server-only) | | VITE_CONCIAR_API_URL | Any non-empty value switches off mock mode and enables real API calls | | VITE_APP_URL | Public URL of the shop (OAuth redirect_uri) |

Leave VITE_CONCIAR_API_URL empty to run in mock mode with built-in sample data — handy for a first look before wiring credentials.

Rebrand

  • Color: change --color-primary (and -dark/-light) in src/assets/main.css — it flows through every *-primary utility.
  • Fonts / copy: fonts are set in src/assets/main.css; UI copy lives in src/locales/*.ts.

Requirements

Node ≥ 18.

Other Conciar SDKs & libraries

Looking for clients in other languages or frameworks? See the full list at conciar.com/en/developers/sdks-libraries.