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

@poveste/plugin-quasar

v0.12.3

Published

Poveste plugin that builds a book inside a Quasar project

Readme

@poveste/plugin-quasar

Builds a Poveste book inside a Quasar project.

pnpm add -D poveste @poveste/plugin-vue @poveste/plugin-quasar

Add both plugins in poveste config:

import { HstQuasar } from '@poveste/plugin-quasar'
import { HstVue } from '@poveste/plugin-vue'
import { defineConfig } from 'poveste'

export default defineConfig({
  plugins: [
    HstVue(),
    HstQuasar(),
  ],
})

Quasar builds its Vite config asynchronously and exposes it through an entrypoint whose own header says it is for tooling. This plugin fetches it and makes the two adjustments a book needs — both of which are easy to get wrong and fail in ways that do not point back at them.

Quasar's plugins are passed through whole. Nothing needs removing, which is unusual: @poveste/plugin-nuxt drops six. Removing Quasar's Vue plugin as a duplicate is the tempting mistake, and @quasar/vite-plugin refuses outright because it asserts a Vue plugin is registered before it.

Quasar is also kept transformed rather than externalised during story collection. Its plugin writes __QUASAR_VERSION__ while transforming its own source, so a source loaded through Node instead has nothing to read.

Boot files

Poveste renders your components in its own app, so Quasar's boot files never run on their own — and an app extension registers its components through a boot file it contributes, so an extension's components are missing too. Both fail quietly: the build succeeds and the component is simply absent.

Pass them to setupQuasar in your setup file:

import { setupQuasar } from '@poveste/plugin-quasar/setup'
import { defineSetupVue3 } from '@poveste/plugin-vue'
import greeting from './boot/greeting'

export const setupVue3 = defineSetupVue3(setupQuasar({
  boot: [greeting],
}))

Only app is passed to a boot file: a story has no router, no store and no SSR context, so one that needs those has to be split or guarded.

Needs @quasar/app-vite@^3.8.0 and quasar@^2.24.0. Quasar's SPA config is what the entrypoint returns, so that is what a book is built with.

The setup helper imports Quasar's stylesheet, which is Sass, so the project needs a Sass compiler for Vite to use — sass or sass-embedded. Quasar projects have one already; a project that reaches Quasar another way may not, and Vite says so with Preprocessor dependency "sass" not found.

Quasar reports a project it will not build by exiting the process rather than raising an error. That is caught while its config is being read, so a missing index.html or a rejected quasar.config fails as a Poveste error naming this plugin instead of taking the CLI down with no explanation.

Configuration · Quasar recipe