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

@qwickapps/cms

v0.5.2

Published

QwickApps CMS - Reusable Payload CMS collections, globals, and components

Readme

@qwickapps/cms

Reusable Payload CMS collections, globals, and components for building QwickApps-powered websites

What's New in v0.5.0

  • HeroSlideshows Collection: New collection for managing hero slideshow content in the page builder
  • PeerDependencies Change: @payloadcms/email-nodemailer and @payloadcms/live-preview-react are now peerDependencies. Add them to your project's package.json directly.
  • Bug Fixes: Fixed infinite loop, missing React keys, and hero button contrast issues

See CHANGELOG.md for full details.

Overview

@qwickapps/cms is a package that provides pre-built Payload CMS configurations for creating content management systems with the QwickApps framework. It eliminates boilerplate by providing ready-to-use collections, globals, blocks, and integrations.

Features

  • 📦 Collections: Pages, Posts, Media, Navigation, Forms, and more
  • 🌐 Globals: Site Settings, Integrations, Advanced Settings
  • 🧱 Content Blocks: Hero, Feature Grid, CTA, Forms, and 8+ other blocks
  • 🔌 Plugins: QwickApps integration plugin
  • 🎨 Components: Admin UI components (Logo, Dashboard, Row Labels)
  • 📊 Providers: PayloadDataProvider for framework integration

Installation

npm install @qwickapps/cms

Usage

Basic Setup

// payload.config.ts
import { buildConfig } from 'payload';
import {
  Pages,
  Posts,
  Media,
  Users,
  Navigation,
  Forms,
} from '@qwickapps/cms/collections';
import {
  SiteSettings,
  Integrations,
  AdvancedSettings,
} from '@qwickapps/cms/globals';

export default buildConfig({
  collections: [Users, Pages, Posts, Media, Navigation, Forms],
  globals: [SiteSettings, Integrations, AdvancedSettings],
  // ... rest of your config
});

Using Content Blocks

import { contentBlocks } from '@qwickapps/cms/blocks';

// In your collection config
{
  name: 'content',
  type: 'blocks',
  blocks: contentBlocks,
}

Using the QwickApps Plugin

import { qwickappsPlugin } from '@qwickapps/cms/plugins';

export default buildConfig({
  plugins: [
    qwickappsPlugin({
      enableVisualBuilder: true,
      enableAI: false,
    }),
  ],
});

Collections

Pages

Dynamic pages with flexible content blocks and SEO metadata.

Posts

Blog posts with featured images, authors, categories, and tags.

Media

Image, video, and PDF uploads with alt text and captions.

Navigation

Multi-level navigation menus with icon support.

Forms

Custom form builder with CAPTCHA protection and submission storage.

Products

Product catalog with rich descriptions and pricing.

Users

Authentication and user management.

Globals

Site Settings

  • Site information (name, description, logo)
  • Contact information
  • Social media links

Integrations

  • Analytics (GA4, GTM, Facebook Pixel)
  • CAPTCHA (reCAPTCHA v2/v3, hCaptcha, Turnstile)
  • Email configuration (SMTP)

Advanced Settings

  • SEO defaults
  • Custom scripts (header, footer, CSS)
  • Maintenance mode

Content Blocks

  • Hero - Large header sections
  • Text Section - Rich text content
  • Feature Grid - Feature showcases
  • CTA Section - Call-to-action sections
  • Image - Image displays
  • Spacer - Vertical spacing
  • Code - Code snippets
  • Product Grid - Product displays
  • Accordion - Collapsible content
  • Card Grid - Card layouts
  • Form - Contact forms

Components

Admin UI components for better UX:

  • Logo - Custom admin logo
  • Icon - Custom admin icon
  • Dashboard - Custom dashboard
  • BlockRowLabel - Block row labels
  • FormFieldRowLabel - Form field labels
  • NavigationItemRowLabel - Navigation labels

Providers

PayloadDataProvider

Bridge between Payload CMS and QwickApps Framework:

import { PayloadDataProvider } from '@qwickapps/cms/providers';

const dataProvider = new PayloadDataProvider({
  baseUrl: 'http://localhost:3000/api',
});

Development

Building

npm run build

Watching

npm run dev

Dependencies

This package requires the following peer dependencies:

  • payload ^3.0.0
  • @payloadcms/db-postgres ^3.0.0
  • @payloadcms/next ^3.0.0
  • @payloadcms/richtext-lexical ^3.0.0
  • @qwickapps/react-framework *
  • @qwickapps/schema *
  • next ^15.0.3
  • react ^19.0.0

Examples

The examples/ directory contains complete, runnable website examples:

| Example | Description | Theme | |---------|-------------|-------| | Photography Portfolio | Professional photographer portfolio with galleries | Midnight (dark) | | Restaurant | Restaurant website with menu and reservations | Autumn (light) | | DJ Portfolio | Music artist/DJ website with events and music | Cosmic (dark) | | Travel Blog | Travel blog with destinations and stories | Ocean (light) |

Running Examples

Each example can be run with Docker:

# Navigate to an example
cd examples/photography-portfolio

# Start with Docker Compose
docker compose up

# Open in browser
open http://localhost:3000

# Admin panel
open http://localhost:3000/admin

Default credentials for all examples:

Running All Examples

cd examples
docker compose up

# Photography: http://localhost:3001
# Restaurant:  http://localhost:3002
# DJ:          http://localhost:3003
# Travel Blog: http://localhost:3004

License

This package is licensed under the PolyForm Shield License 1.0.0.

Permitted uses:

  • Building websites and applications
  • Internal business applications
  • Learning and educational projects
  • Non-competitive commercial applications

Contact: [email protected] for commercial licensing questions.

Links