Skip to content

Chrome and Firefox DevTools extension for debugging Livewire applications

License

Notifications You must be signed in to change notification settings

rw4lll/livewire-devtools

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Livewire Devtools

Debug your Livewire component state from within your browser.

Upd.: there was added support for Livewire v3. Please, report any issues you may have.

screenshot

Roadmap

  • Chrome Manifest V3 support
  • Check FF extension
  • Add Livewire v3 support
  • Rewrite tool from scratch with modern stuff (ts, vite, vue3 etc.)

Installation

Manual Installation (Chrome)

  1. Clone this repo
  2. npm install (Or yarn install if you are using yarn as the package manager)
  3. npm run build
  4. Open Chrome extension page (chrome://extensions)
  5. Check "developer mode"
  6. Click "load unpacked extension", and choose shells/chrome.

Hacking

  1. Clone this repo
  2. npm install
  3. npm run dev
  4. A plain shell with a test app will be available at localhost:8100.

Manual Installation (Firefox)

  1. Install web-ext

    $ npm install --global web-ext
    

    Or, for Yarn:

    $ yarn global add web-ext
    

    Also, make sure PATH is set up. Something like this in ~/.bash_profile:

    $ PATH=$PATH:$(yarn global bin)
    
  2. Build and run in Firefox

    $ npm run build:ff
    $ npm run zip:ff
    

    When using Yarn, just replace npm with yarn.

  3. Open "about:addons" in Firefox browser, then click "Install from file" and select built zip-folder.

License

Thanks goes out to Vue devtools, which were used as a starting point for this.

MIT

About

Chrome and Firefox DevTools extension for debugging Livewire applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 47.2%
  • Vue 38.9%
  • Stylus 12.6%
  • HTML 1.3%