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

vuenotate

v0.2.2

Published

Visual feedback tool for Vue/Nuxt - annotate elements and send structured context to AI coding agents

Readme

Vuenotate

Visual feedback tool for Vue/Nuxt applications. Annotate UI elements and generate structured Markdown context for AI coding agents.

Features

  • Element Picking - Click any element to annotate it with automatic Vue component detection
  • Text Selection - Select text to annotate specific content
  • Area Selection - Alt+drag to annotate screen regions
  • Vue Component Introspection - Extracts component name, file path, and props from DOM elements
  • Markdown Output - Generates structured feedback with selectors, component info, and notes
  • Draggable Toolbar - Floating UI with customizable marker colors
  • Keyboard Shortcut - Toggle with Cmd/Ctrl+Shift+V

Installation

# pnpm
pnpm add vuenotate

# npm
npm install vuenotate

# yarn
yarn add vuenotate

Usage

Nuxt

Add the module to your nuxt.config.ts:

export default defineNuxtConfig({
  modules: ['vuenotate']
})

The module is enabled by default in development mode. To configure:

export default defineNuxtConfig({
  modules: ['vuenotate'],
  vuenotate: {
    enabled: true // Force enable/disable
  }
})

Standalone Vue

Import and use the Vue plugin:

import { createApp } from 'vue'
import { vuenotate } from 'vuenotate/vue'
import App from './App.vue'

createApp(App)
  .use(vuenotate())
  .mount('#app')

With options:

createApp(App)
  .use(vuenotate({ enabled: import.meta.env.DEV }))
  .mount('#app')

For manual mounting (custom timing):

import { mountVuenotate } from 'vuenotate/vue'

// Call after your app is ready
onMounted(() => {
  mountVuenotate()
})

How It Works

  1. Activate - Press Cmd/Ctrl+Shift+V or click the toolbar toggle
  2. Annotate - Click elements, select text, or Alt+drag areas
  3. Add Notes - Describe what you want changed in the dialog
  4. Copy - Click copy button to get Markdown output for your AI agent

Output Format

## VueNotate Feedback

### 1. ProductCard
**Selector**: `[data-testid="product-card"]`
**File**: `components/ProductCard.vue`
**Props**: `{"price":29.99,"title":"Widget"}`
**Note**: Make the price larger and add a discount badge

### 2. Text in Header
**Selector**: `.header-title`
**File**: `components/Header.vue`
**Selected**: "Welcome back"
**Note**: Change this to show the user's name

Toolbar Controls

| Button | Action | |--------|--------| | Drag handle | Move toolbar position | | Toggle (circle+) | Enable/disable annotation mode | | Eye | Show/hide markers | | Copy | Copy annotations as Markdown | | Trash | Clear all annotations | | Gear | Settings (marker color, clear after copy) |

Selection Modes

  • Element - Click any element (default when active)
  • Text - Select text with mouse
  • Area - Hold Alt and drag to select a region

Requirements

  • Vue 3.4+
  • Nuxt 3.0+ (for Nuxt module)

Development

# Install dependencies
pnpm install

# Start playground
pnpm dev

# Build module
pnpm build

# Type check
pnpm typecheck

License

MIT