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

@richpods/coloeus

v0.2.0

Published

Coloeus Poll Components - Embeddable Vue 3 components

Readme

@richpods/coloeus

Embeddable Vue 3 poll components for the Coloeus poll service.

Installation

npm install @richpods/coloeus

Quick Start

import { createApp } from 'vue'
import { configureColoeus, ColoeusPolls } from '@richpods/coloeus'
import '@richpods/coloeus/style.css'

// Configure the API endpoint
configureColoeus({
  apiUrl: 'https://your-api.example.com'
})

const app = createApp(App)
app.component('ColoeusPolls', ColoeusPolls)
app.mount('#app')

Configuration

Before using any components, configure the library with your API endpoint:

import { configureColoeus } from '@richpods/coloeus'

configureColoeus({
  apiUrl: 'https://your-api.example.com',
  // Optional: provide auth token for admin operations
  getAuthToken: async () => {
    return await yourAuthService.getToken()
  }
})

Config Options

| Option | Type | Required | Description | |--------|------|----------|-------------| | apiUrl | string | Yes | Base URL of your Coloeus API | | getAuthToken | () => Promise<string \| null> | No | Async function returning a JWT for authenticated requests |

Components

ColoeusPolls

Displays a poll and allows users to vote.

<template>
  <ColoeusPolls
    id="your-poll-id"
    @voted="handleVoted"
    @error="handleError"
  />
</template>

<script setup>
import { ColoeusPolls } from '@richpods/coloeus'

function handleVoted(pollId, optionIndices) {
  console.log(`Voted on poll ${pollId}:`, optionIndices)
}

function handleError(error) {
  console.error('Vote error:', error)
}
</script>

Props

| Prop | Type | Required | Description | |------|------|----------|-------------| | id | string | Yes | The poll ID to display |

Events

| Event | Payload | Description | |-------|---------|-------------| | voted | (pollId: string, optionIndices: number[]) | Emitted after a successful vote | | error | (error: string) | Emitted when an error occurs |

ColoeusEditor

Create or edit polls. Requires authentication via getAuthToken.

<template>
  <ColoeusEditor
    :id="pollId"
    @saved="handleSaved"
    @cancel="handleCancel"
    @error="handleError"
  />
</template>

<script setup>
import { ColoeusEditor } from '@richpods/coloeus'

const pollId = undefined // omit for create mode, provide ID for edit mode

function handleSaved(poll) {
  console.log('Poll saved:', poll)
}

function handleCancel() {
  console.log('Edit cancelled')
}

function handleError(error) {
  console.error('Save error:', error)
}
</script>

Props

| Prop | Type | Required | Description | |------|------|----------|-------------| | id | string | No | Poll ID to edit. Omit to create a new poll |

Events

| Event | Payload | Description | |-------|---------|-------------| | saved | (poll: AdminPoll) | Emitted after successful save | | cancel | none | Emitted when cancel is clicked | | error | (error: string) | Emitted when an error occurs |

Composables

For advanced use cases, you can use the composables directly:

import { usePoll, useVote } from '@richpods/coloeus'

// Fetch and manage poll state
const { poll, loading, error, totalVotes, isActive } = usePoll('poll-id')

// Manage voting state
const { selectedOptions, submitVote, alreadyVoted } = useVote('poll-id')

Types

TypeScript types are included:

import type {
  PublicPoll,
  PollOption,
  VoteResponse,
  CreatePollInput,
  UpdatePollInput,
  AdminPoll,
  ColoeusConfig
} from '@richpods/coloeus'

Styling

Import the default styles:

import '@richpods/coloeus/style.css'

All components use BEM-style class names prefixed with coloeus- for easy customization:

  • .coloeus-poll - Poll container
  • .coloeus-poll__title - Poll title
  • .coloeus-poll__options - Options list
  • .coloeus-poll__option - Individual option
  • .coloeus-poll__vote-btn - Vote button
  • .coloeus-editor - Editor container
  • .coloeus-editor__field - Form field
  • .coloeus-editor__input - Input element

License

Blue Oak Model License 1.0.0