Skip to content

Latest commit

 

History

History
69 lines (49 loc) · 3.3 KB

README.md

File metadata and controls

69 lines (49 loc) · 3.3 KB

Firebug.next Build Status

![Gitter](https://badges.gitter.im/Join Chat.svg)

Next Firebug generation built on top of native Firefox developer tools getfirebug.com

License

Firebug is free and open source software distributed under the BSD License.

Repository Structure

Structure of the extension follows Jetpack standards.

  • data HTML pages, etc.
  • chrome Stylesheets, localization files, etc.
  • lib Firebug extension javascript files.
  • test Directory with test files

Hacking on Firebug.next (aka Firebug 3)

  1. Get JPM: git clone https://github.com/mozilla/jpm
  2. Switch to the JPM folder and install and link it via npm install and npm link. (Also needs to be done after fetching the latest changes to the JPM repo.)
  3. Get the Firebug.next repo: git clone https://github.com/firebug/firebug.next
  4. (Optional) Install FBTrace in your Firefox dev profile
  5. Run jpm run -b <file path to your Firefox binary> in the Firebug.next directory to launch Firefox (you need Firefox Nightly build at the moment), which automatically creates a clean profile. If you wish to run it with an existing profile (e.g. to include FBTrace), first create a new profile via the Profile Manager, and then run jpm run -b <file path to your Firefox binary> -p <path to your Firefox profile (needs to start with /)>.

Examples

Run Firebug with Firefox Nightly on OSX:

jpm run -b /Applications/FirefoxNightly.app

Run Firebug with local installation of Add-on SDK (git clone https://github.com/mozilla/addon-sdk):

jpm run -o <path to Add-on SDK> -b <file path to your Firefox binary>

Build Firebug .xpi file for deployment and installation:

jpm xpi

Run Firebug test suite:

jpm test

Running tests requires some external modules, you need to download and install them:

npm install

Start Contributing

Read our wiki

Further Resources