leonvogt / hotwire-dev-tools

Browser Dev Tools for Turbo and Stimulus
MIT License
184 stars 4 forks source link
hacktoberfest hotwire stimulus turbo

Hotwire Dev Tools

Hotwire Dev Tools is a browser extension with the goal of helping developers inspect their Turbo and Stimulus applications.

Turbo features:

Stimulus features:

Installation

The extension can be installed at:

Usage

Once installed, click on the extension icon (or press Alt+Shift+S) to open the Dev Tools options.
From there you can enable/disable the features you want to use.
Note: On Firefox you may need to select "Always allow on example.com" to enable the extension on your site.

Development

[!NOTE]
By default, the extension will be built for Chrome. To build for Firefox or Safari just add firefox or safari as an argument to the build command: npm run build firefox or npm run build safari.

Test on Chrome

  1. Open Chrome and navigate to chrome://extensions/
  2. Enable Developer mode
  3. Click on Load unpacked and select the public folder (make sure to build the extension first)

Test on Firefox

The easiest way is to make use of the web-ext tool:

npm install --global web-ext

cd public
web-ext run

That will open a new Firefox instance with the extension installed and hot reloading enabled.

Test on Safari

First configure Safari to run unsigned extensions:

  1. Choose Safari > Settings
  2. Select the Advanced tab
  3. Check the "Show features for web developers" box
  4. Select the Developer tab.
  5. Check the Allow unsigned extensions box.

This may depend on the version of macOS and Safari you are using.
So if you can't find the settings, you may need to search for the specific version you are using.

Then you can load the extension by following these steps:

  1. Open Xcode
  2. Choose "Open Existing Project"
  3. Select the HotwireDevTools/HotwireDevTools.xcodeproj file (blue icon)
  4. Build the project (you may need to select a team in the project settings -> Signing & Capabilities)
  5. Open Safari > Settings > Extensions and enable the Hotwire Dev Tools extension

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/leonvogt/hotwire-dev-tools.

Coding Standards

This project uses Prettier to format the code and ensure a consistent style.

Please run npm run format prior to submitting pull requests.


This Dev Tool were inspired by turbo-devtool and turbo_boost-devtools 🙌