You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

vue-dev-tools-accessibility

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-dev-tools-accessibility

**Go to the website for install/usage steps:**

0.2.0
npmnpm
Version published
Weekly downloads
23
155.56%
Maintainers
1
Weekly downloads
 
Created
Source

vue-dev-tools-accessibility

Accessibility plugin for Vite Vue-DevTools.

Go to the website for install/usage steps:

  • https://vue-dev-tools-accessibility.github.io

Running locally

  • Install Volta
  • Clone this repo
  • npm i
  • This repo is just the logic and the tab in the Vite-Vue-DevTools. You'll also need to clone down the UI too and run it locally.
  • In another repo (any Vue 3 app that has the Vite-Vue-DevTools plugin installed), locally import this plugin from this repo:
    // vite.config.js
    import vue from '@vitejs/plugin-vue';
    import { defineConfig } from 'vite';
    import vueDevTools from 'vite-plugin-vue-devtools';
    import vueDevToolsAccessibility from '../vue-dev-tools-accessibility/index.js';
    
    export default defineConfig({
      plugins: [
        vue(),
        vueDevTools(),
        vueDevToolsAccessibility()
      ]
    });
    
  • Also in that other repo, add this ENV VAR when running locally "dev": "cross-env VITE_A11Y=local vite". This will have it use the localhost for the v0 server.
  • I don't have a solution yet for how to have use the correct devtools.js in the browser for development. So for now I'm just editing the file in that repos node_modules and copying the results back to this repo until I can find a smoother development process. This does require deleting the node_modules/.vite and node_modules/.vite-temp folders sometimes to get it to load the changes from node_modules.
  • Run that Vue app to test the library there.

FAQs

Package last updated on 26 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts