gecko-dev/devtools/docs
Julian Descottes 226dd89197 Bug 1272774 - rename actor/childtab.js to actor/content.js to match ContentActor;r=ochameau
MozReview-Commit-ID: BJ8zjFeiZPD

--HG--
rename : devtools/server/actors/childtab.js => devtools/server/actors/content.js
extra : rebase_source : 27d016532666641adf1c20f639c9521636324f53
2018-01-05 10:11:04 +01:00
..
backend Bug 1272774 - rename actor/childtab.js to actor/content.js to match ContentActor;r=ochameau 2018-01-05 10:11:04 +01:00
contributing Bug 1406383- Add documentation for squashing commits; r=sole DONTBUILD 2018-01-13 03:12:10 +05:30
files Bug 1365216 - DevTools: bring over documentation for how to find documentation into the tree. r=pbro 2017-05-16 13:18:48 +01:00
frontend Bug 1395956 - Update gecko.readthedocs links to the new firefox-source-docs.mozilla.org location. r=chutten 2017-09-02 22:11:02 +05:30
getting-started Bug 1408827 - Where is code link broken for DevTools documentation. r=sole 2017-11-20 23:11:15 -04:00
resources Bug 1365216 - DevTools: bring over documentation for how to find documentation into the tree. r=pbro 2017-05-16 13:18:48 +01:00
styles Bug 1257322 - add more devtools docs r=pbrosset 2016-03-21 10:36:28 -04:00
tests Bug 1415472 - Document writing new DAMP test. r=sole 2017-12-11 06:07:10 -08:00
tools Bug 1415389. Make ChromeUtils a WebIDL namespace. Remove ThreadSafeChromeUtils. r=kmag 2017-11-08 00:25:33 -05:00
.gitignore Bug 1257322 - add more devtools docs r=pbrosset 2016-03-21 10:36:28 -04:00
README.md Bug 1365216 - DevTools: bring over documentation for how to find documentation into the tree. r=pbro 2017-05-16 13:18:48 +01:00
SUMMARY.md Bug 1415545 - Document working on DevTools performance. r=sole 2017-12-13 09:58:23 -08:00
bugs-issues.md Bug 1365216 - DevTools: bring over documentation for how to find documentation into the tree. r=pbro 2017-05-16 13:18:48 +01:00
contributing.md Bug 1365255 - DevTools: bring over documentation for contributing and coding standards into the tree. r=nchevobbe 2017-05-26 13:02:02 +01:00
preferences.md Bug 1393767 - add documentation about DevTools preferences;r=sole 2017-08-29 12:06:52 +02:00

README.md

Firefox Developer Tools

Hello!

This documentation is for developers who want to work on the developer tools. Get started here.

If you are looking for end user documentation, check out this MDN page instead.

Happy developing!

About this documentation

This guide is built with MarkDown files and GitBook.

The source code for this documentation is distributed with the source code for the tools, in the docs/ folder.

If you want to contribute to the documentation, clone the repository, make your changes locally, and then regenerate the book to see how it looks like before submitting a patch:

# Install GitBook locally
npm install -g gitbook-cli

# Go into the docs directory
cd /path/to/mozilla-central/devtools/docs/

# Generate the docs and start a local server
gitbook serve

# You can now navigate to localhost:4000 to see the output

# Or build the book only (this places the output into `docs/_book`)
gitbook build