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

@dumbql/vue

v1.0.5

Published

Vue composables for @dumbql/client — useQuery, useMutation, useSubscription

Readme


Features

  • createDumbqlPlugin(client) — Vue plugin to provide DumbqlClient
  • useQuery(document, options?) — reactive query composable with refetch, fetchMore, pollInterval
  • useMutation(document, options?) — mutation composable with update callback
  • useSubscription(document, options?) — subscription composable with onNext/onError
  • useLiveQuery(document, options?) — real-time query (HTTP fetch + WebSocket subscription)
  • useClient() — access DumbqlClient from anywhere
  • Reactive refsdata, loading, error, errorCode are Vue refs
  • SSR support — works with Vue's onServerPrefetch

Install

npm install @dumbql/vue @dumbql/client

Quick Start

<script setup>
import { createDumbqlPlugin, useQuery, gql } from '@dumbql/vue';
import { createClient } from '@dumbql/client';

const client = createClient({ endpoint: '/graphql' });
const plugin = createDumbqlPlugin(client);

const GET_TODOS = gql`query Todos { todos { id title } }`;
const { data, loading, error, refetch } = useQuery(GET_TODOS);
</script>

<template>
  <p v-if="loading">Loading…</p>
  <p v-else-if="error">{{ error }}</p>
  <ul v-else>
    <li v-for="todo in data.todos" :key="todo.id">{{ todo.title }}</li>
  </ul>
</template>

Composable API

useQuery

const { data, loading, error, errorCode, networkStatus, called, refetch, fetchMore } = useQuery(
  document,
  {
    variables,
    pollInterval,       // auto-polling in ms
    skip,               // skip initial fetch
    onCompleted,        // (data) => void
    onError,            // (error, errorCode?) => void
  },
);

All result fields are Vue Refs except refetch and fetchMore.

| Field | Type | Description | |-------|------|-------------| | data | Ref<TData \| null> | Response data | | loading | Ref<boolean> | True during initial fetch or refetch | | error | Ref<string \| null> | Error message | | errorCode | Ref<ErrorCode \| undefined> | Typed error code | | networkStatus | Ref<NetworkStatus> | 'loading' \| 'ready' \| 'error' \| 'refetching' \| 'poll' | | called | Ref<boolean> | True after first execution | | refetch | (vars?) => Promise<GraphQLResult<T>> | Re-fetch with optional new variables | | fetchMore | (merge, vars?) => Promise<GraphQLResult<T>> | Fetch more data and merge |

useMutation

const { data, loading, error, errorCode, called, mutate } = useMutation(
  document,
  {
    variables,
    onCompleted,   // (data) => void
    onError,       // (error, errorCode?) => void
    update,        // (cache, result) => void — update cache after success
  },
);

mutate(variables);

useSubscription

const { data, loading, error, errorCode } = useSubscription(
  document,
  {
    variables,
    wsEndpoint,       // default: derived from client endpoint
    shouldSubscribe,  // default: true
    onNext,           // (data) => void
    onError,          // (error, errorCode?) => void
    onComplete,       // () => void
  },
);

useLiveQuery

Real-time query that executes an initial HTTP fetch then subscribes to WebSocket updates.

const { data, loading, error, errorCode } = useLiveQuery(
  document,
  {
    variables,
    wsEndpoint,       // default: derived from client endpoint
    shouldSubscribe,  // default: true
    onCompleted,      // (data) => void
    onError,          // (error, errorCode?) => void
  },
);

API Overview

| Export | Description | |--------|-------------| | createDumbqlPlugin(client) | Vue plugin — installs the client globally | | useClient() | Access DumbqlClient from composition API | | useQuery(doc, opts?) | Reactive query with refetch, fetchMore, pollInterval | | useMutation(doc, opts?) | Mutation with update callback | | useSubscription(doc, opts?) | Subscription with onNext/onError | | useLiveQuery(doc, opts?) | Real-time query (fetch + WS) |

Dependencies

vue (^3), @dumbql/client, graphql