Awesome
Livewire Devtools
Debug your Livewire component state from within your browser.
<p align="center"><img src="https://raw.githubusercontent.com/beyondcode/livewire-devtools/master/media/screenshot-shadow.png" alt="screenshot"></p>Installation
This extension does not yet have a stable version publicly available. You can download the pre-release version and manually install it.
Manual Installation
- Clone this repo
npm install
(Oryarn install
if you are using yarn as the package manager)npm run build
- Open Chrome extension page (chrome://extensions)
- Check "developer mode"
- Click "load unpacked extension", and choose
shells/chrome
.
Hacking
- Clone this repo
npm install
npm run dev
- A plain shell with a test app will be available at
localhost:8080
.
Testing as Firefox addon
-
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)
-
Build and run in Firefox
$ npm run build $ npm run run:firefox
When using Yarn, just replace
npm
withyarn
.
License
Thanks goes out to Vue devtools, which were used as a starting point for this.