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

@hubblecommerce/nuxtware

v0.0.1

Published

Nuxt layer for building headless e-commerce interfaces with Shopware 6

Downloads

116

Readme

Nuxtware

A Nuxt 3 layer with Shopware integration for building e-commerce frontends.

Quick Start

npm install
npm dev

Documentation

Detailed documentation is available in the /docs directory:

Working with AI Assistant

To maximize productivity when using Claude or other AI assistants with this project:

  1. Start with: "Please read the documentation in the /docs directory to understand the project standards before we begin."

  2. For updates after project changes: "I've made some changes to the project since we last spoke. Please review the current state of the codebase and update the documentation in the /docs directory to reflect these changes. Specifically, we've [description of changes]. Make sure the documentation accurately reflects our current standards, workflows, and project structure."

Development

Shopware Configuration

Create .env file in /.playground:

NUXT_PUBLIC_SHOPWARE_ENDPOINT = 'https://my-shopware.com/store-api/'
NUXT_PUBLIC_SHOPWARE_ACCESS_TOKEN = 'SWXXXXXXXXXXXXXXXXXXXX'
NUXT_PUBLIC_SHOPWARE_DEV_STOREFRONT_URL = 'https://my-shopware.com'

Development Server

Start the development server on http://localhost:3000

npm dev

Production

Build the application for production:

npm build

Or statically generate it with:

npm generate

Locally preview production build:

npm preview

Distribution

This Nuxt layer can be published to NPM. Check if files in package.json are valid, then run:

npm publish --access public

Users can install it with:

npm install --save nuxtware

And add it to their Nuxt configuration:

defineNuxtConfig({
  extends: 'nuxtware'
})

Additional Resources

For more information about Shopware API integration and advanced configurations, please refer to the API Client documentation.

Api Constraints (differences to Storefront)

  • Rendering correct "from price" in listing, see composables composables/useProductPriceCustom.ts for detailed info and solutions
  • Store API lacks endpoint to check if current customer has already reviewed a specific product (requires client-side tracking via localStorage)
  • Store API does not provide PATCH endpoint for updating existing reviews (edit functionality not available)

Roadmap

Nuxtware:

  • [x] Listing:
    • [x] Pagination
    • [x] Limiter
    • [x] Sorter
    • [x] Filter
    • [x] Category Sidebar Navigation
    • [x] Card
  • [x] Detail:
    • [x] Gallery
    • [x] Buybox
      • Prices, Availability, Delivery Time, Reviews Link, Qty Selector, Add-To-Cart Button, Wishlist-Toggle, Sku
    • [x] Variant Selection
    • [x] Tabs: Description / Reviews
      • [x] Description
      • [x] Reviews
    • [x] X-Selling (Product Carousel)
  • [x] Cart
  • [x] Checkout
    • [x] Index
    • [x] Success
    • [x] Error
  • [x] Wishlist
  • [x] Account
    • [x] Login
    • [x] Register
    • [x] Password forgot
    • [x] Overview
    • [x] Orders
    • [x] Profile
    • [x] Addresses
  • [ ] CMS
    • [ ] Blocks and elements from "community edition"
      • [x] Blocks
        • [x] Text Variations
        • [x] Image Variations
        • [x] Video Variations
        • [x] Text & Image Variations
      • [x] Elements
        • [x] Image
        • [x] Text
        • [x] Video
        • [x] Formular
        • [x] HTML
    • [ ] Blocks and elements from "licensed edition"
      • [ ] Elements
        • [ ] 3D
  • [x] Skiplinks
  • [x] Scroll To Top
  • [x] Newsletter Form
    • [x] Newsletter double opt in retun page (newsletter-subscribe)
  • [x] Popups (Modals)
  • [x] Footer
  • [x] Topbar / Banderole
  • [ ] Brands Page
  • [x] Refactor <img> to use nuxt-image component instead
  • [ ] Add Consent Modal to Video CMS Element
  • [ ] Add Cookie Consent
  • [x] Language Switch
  • [x] Currency Switch
  • [ ] Error pages
    • [ ] Maintanance Mode
    • [ ] 404 Page
  • [ ] Sync basic state like session/cart data between tabs
  • [ ] CMS Meta Data (useCmsHead)
  • [ ] Structured Data: Product JSONLD
  • [ ] Customer group registration page (FrontendAccountCustomerGroupRegistrationPage.vue)
  • [ ] Server routes
    • [ ] Imitate customer
    • [ ] Sitemap
  • [x] Properly implement StructureElementImageGallery with Thumbnail Gallery and Full-Screen Gallery on click
  • [ ] Lazy Loading of Structure Blocks
  • [ ] Loading page indicator bar