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

@jkavuncuoglu/seo-ux-audit-sidebar

v0.1.7

Published

SEO & UX Audit Sidebar components for Vue 3

Readme

SEO & UX Audit Sidebar (Vue 3)

npm version npm downloads license vue

A modular Vue 3 sidebar for quick Content SEO and User Experience (UX) audits.
It runs safe, client-side heuristics and shows pass / warn / fail statuses with actionable guidance.

👉 Perfect for developers who want lightweight, in-browser SEO & UX checks during development.


👀 Preview

SEO & UX Audit Sidebar Preview
Example of the sidebar auditing SEO & UX issues directly inside your app.


📦 Installation

NPM

# NPM
npm install @jkavuncuoglu/audit-sidebar

#Yarn
yarn add @jkavuncuoglu/audit-sidebar

#PNPM
pnpm add @jkavuncuoglu/audit-sidebar

🚀 Basic Usage

import { createApp } from 'vue'
import AuditSidebarPlugin, { SidebarAudit } from '@jkavuncuoglu/audit-sidebar'
import '@jkavuncuoglu/audit-sidebar/style.css' // optional minimal styles

import App from './App.vue'

const app = createApp(App)

// Install the plugin globally
app.use(AuditSidebarPlugin)

// Mount your app
app.mount('#app')

// OR: use <SidebarAudit /> locally inside your components

🧩 Features

  • ✅ Content SEO checks: meta title, meta description, H1s, image alts, canonical tag
  • ✅ UX checks: viewport tag, mobile-friendliness heuristic, broken links, large images, contrast hints
  • ✅ One-click auditing: run all checks at once or trigger individually
  • ✅ Local persistence: remembers sidebar state, active tab, and suppressed items via localStorage
  • ✅ Lightweight & client-safe: runs entirely in the browser without external calls

🎨 Styling If you use Tailwind, the components will automatically pick up utility classes. Without Tailwind, you can import the included fallback CSS:

⚠️ Notes & Limitations

  • 🔍 Link checks are heuristic-only (no cross-origin fetches in browser).
  • 📑 Duplicate meta detection works per-page; cross-page analysis is out of scope.
  • 🌐 Contrast & mobile-friendly checks use basic heuristics; for production audits, pair with Lighthouse or dedicated SEO tools.

🛠️ Troubleshooting

  • Sidebar not styled? Ensure you’ve imported style.css or have Tailwind set up.
  • Vue version mismatch? Requires Vue 3 (Composition API).
  • State not saving? Check if browser storage (localStorage) is enabled.

📄 License

MIT © Jeremy Kavuncuoglu

Release Notes

See the full changelog in CHANGELOG.md.