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.5.0
latest
npmnpm
Version published
Weekly downloads
9
-64%
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

Arrow pointing up Arrow pointing up Arrow pointing up

Running locally (plugin development)

  • 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), set up this plugin in normally, and start the webserver for it.
  • Use npm run build-dev, though you'll have to update the testingGroundsPath variable in scripts/postbuild-dev.js to point to your test Vite app.
  • You'll also need to delete the node_modules/.vite and node_modules/.vite-temp folders sometimes to get it to load the changes from node_modules. I do this by just making an npm script that does it everytime I restart the dev server:
    • "start": "rd /s /q ./node_modules/.vite && rd /s /q ./node_modules/.vite-temp && vite",
    • "start": "rm -r -f ./node_modules/.vite && rm -r -f ./node_modules/.vite-temp && vite",
  • Run that Vue app to test the library there.
  • To have access to the v0 localhost server, run localStorage.setItem('VDTA_LOCAL', true); in the console and refresh the page.

How does this take into account updating/adding dependencies?

It doesn't! For that, you just have to npm install them, then publish a new release of vue-dev-tools-accessibility and repeat step 4.

FAQs

Package last updated on 04 Jul 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