devdocs/README.md

174 lines
11 KiB
Markdown
Raw Normal View History

# [DevDocs](https://devdocs.io) — API Documentation Browser [![Build Status](https://travis-ci.org/freeCodeCamp/devdocs.svg?branch=master)](https://travis-ci.org/freeCodeCamp/devdocs)
2013-10-24 20:25:52 +02:00
DevDocs combines multiple developer documentations in a clean and organized web UI with instant search, offline support, mobile version, dark theme, keyboard shortcuts, and more.
2013-10-24 20:25:52 +02:00
DevDocs was created by [Thibaut Courouble](https://thibaut.me) and is operated by [freeCodeCamp](https://www.freecodecamp.org).
2013-10-24 20:25:52 +02:00
2016-03-27 17:39:38 +02:00
Keep track of development news:
2013-10-24 20:25:52 +02:00
2018-03-26 04:01:04 +02:00
* Join the contributor chat room on [Gitter](https://gitter.im/FreeCodeCamp/DevDocs)
2018-03-26 14:00:00 +02:00
* Watch the repository on [GitHub](https://github.com/freeCodeCamp/devdocs/subscription)
2013-10-24 20:25:52 +02:00
* Follow [@DevDocs](https://twitter.com/DevDocs) on Twitter
2019-01-07 21:22:52 +01:00
**Table of Contents:** [Plugins and Extensions](#plugins-and-extensions) • [Quick Start](#quick-start) · [Vision](#vision) · [App](#app) · [Scraper](#scraper) · [Commands](#available-commands) · [Contributing](#contributing) · [Documentation](#documentation) • [License](#copyright--license) · [Questions?](#questions)
## Plugins and Extensions
* [Chrome web app](https://chrome.google.com/webstore/detail/devdocs/mnfehgbmkapmjnhcnbodoamcioleeooe)
* [Ubuntu Touch app](https://uappexplorer.com/app/devdocsunofficial.berkes)
* [Sublime Text plugin](https://sublime.wbond.net/packages/DevDocs)
* [Atom plugin](https://atom.io/packages/devdocs)
* [Brackets extension](https://github.com/gruehle/dev-docs-viewer)
* [Fluid](http://fluidapp.com) for turning DevDocs into a real OS X app
* [GTK shell / Vim integration](https://github.com/naquad/devdocs-shell)
* [Emacs lookup](https://github.com/skeeto/devdocs-lookup)
* [Alfred Workflow](https://github.com/yannickglt/alfred-devdocs)
* [Vim search plugin with Devdocs in its defaults](https://github.com/waiting-for-dev/vim-www) Just set `let g:www_shortcut_engines = { 'devdocs': ['Devdocs', '<leader>dd'] }` to have a `:Devdocs` command and a `<leader>dd` mapping.
* [Visual Studio Code plugin](https://marketplace.visualstudio.com/items?itemName=akfish.vscode-devdocs ) (1)
* [Visual Studio Code plugin](https://marketplace.visualstudio.com/items?itemName=deibit.devdocs) (2)
* [Desktop application](https://github.com/egoist/devdocs-desktop)
* [Doc Browser](https://github.com/qwfy/doc-browser) is a native Linux app that supports DevDocs docsets
* [GNOME Application](https://github.com/hardpixel/devdocs-desktop) GTK3 application with search integrated in headerbar
2013-10-24 20:25:52 +02:00
## Quick Start
Unless you wish to contribute to the project, we recommend using the hosted version at [devdocs.io](https://devdocs.io). It's up-to-date and works offline out-of-the-box.
2013-10-24 20:25:52 +02:00
2016-03-27 17:39:38 +02:00
DevDocs is made of two pieces: a Ruby scraper that generates the documentation and metadata, and a JavaScript app powered by a small Sinatra app.
2013-10-24 20:25:52 +02:00
2019-01-20 22:16:08 +01:00
DevDocs requires Ruby 2.6.0, libcurl, and a JavaScript runtime supported by [ExecJS](https://github.com/rails/execjs#readme) (included in OS X and Windows; [Node.js](https://nodejs.org/en/) on Linux). Once you have these installed, run the following commands:
2013-10-24 20:25:52 +02:00
```
2018-03-26 14:00:00 +02:00
git clone https://github.com/freeCodeCamp/devdocs.git && cd devdocs
2013-10-24 20:25:52 +02:00
gem install bundler
bundle install
bundle exec thor docs:download --default
bundle exec rackup
2013-10-24 20:25:52 +02:00
```
2013-10-24 20:25:52 +02:00
Finally, point your browser at [localhost:9292](http://localhost:9292) (the first request will take a few seconds to compile the assets). You're all set.
The `thor docs:download` command is used to download pre-generated documentations from DevDocs's servers (e.g. `thor docs:download html css`). You can see the list of available documentations and versions by running `thor docs:list`. To update all downloaded documentations, run `thor docs:download --installed`.
2013-10-24 20:25:52 +02:00
2018-03-26 14:00:00 +02:00
**Note:** there is currently no update mechanism other than `git pull origin master` to update the code and `thor docs:download --installed` to download the latest version of the docs. To stay informed about new releases, be sure to [watch](https://github.com/freeCodeCamp/devdocs/subscription) this repository.
2013-10-24 20:25:52 +02:00
2015-12-01 21:46:16 +01:00
Alternatively, DevDocs may be started as a Docker container:
```
# First, build the image
2018-03-26 14:00:00 +02:00
git clone https://github.com/freeCodeCamp/devdocs.git && cd devdocs
2015-12-01 21:46:16 +01:00
docker build -t thibaut/devdocs .
# Finally, start a DevDocs container (access http://localhost:9292)
docker run --name devdocs -d -p 9292:9292 thibaut/devdocs
```
2013-10-24 20:25:52 +02:00
## Vision
2013-12-12 17:17:32 +01:00
DevDocs aims to make reading and searching reference documentation fast, easy and enjoyable.
2013-10-24 20:25:52 +02:00
2015-02-22 22:57:29 +01:00
The app's main goals are to: keep load times as short as possible; improve the quality, speed, and order of search results; maximize the use of caching and other performance optimizations; maintain a clean and readable user interface; be fully functional offline; support full keyboard navigation; reduce “context switch” by using a consistent typography and design across all documentations; reduce clutter by focusing on a specific category of content (API/reference) and indexing only the minimum useful to most developers.
2013-10-24 20:25:52 +02:00
2016-03-27 17:39:38 +02:00
**Note:** DevDocs is neither a programming guide nor a search engine. All our content is pulled from third-party sources and the project doesn't intend to compete with full-text search engines. Its backbone is metadata; each piece of content is identified by a unique, "obvious" and short string. Tutorials, guides and other content that don't meet this requirement are outside the scope of the project.
2013-10-24 20:25:52 +02:00
## App
2016-03-27 17:39:38 +02:00
The web app is all client-side JavaScript, written in [CoffeeScript](http://coffeescript.org), and powered by a small [Sinatra](http://www.sinatrarb.com)/[Sprockets](https://github.com/rails/sprockets) application. It relies on files generated by the [scraper](#scraper).
2013-10-24 20:25:52 +02:00
Many of the code's design decisions were driven by the fact that the app uses XHR to load content directly into the main frame. This includes stripping the original documents of most of their HTML markup (e.g. scripts and stylesheets) to avoid polluting the main frame, and prefixing all CSS class names with an underscore to prevent conflicts.
2015-02-22 22:57:29 +01:00
Another driving factor is performance and the fact that everything happens in the browser. `applicationCache` (which comes with its own set of constraints) and `localStorage` are used to speed up the boot time, while memory consumption is kept in check by allowing the user to pick his/her own set of documentations. The search algorithm is kept simple because it needs to be fast even searching through 100,000 strings.
2013-10-24 20:25:52 +02:00
DevDocs being a developer tool, the browser requirements are high:
2018-10-09 00:08:23 +02:00
* Recent versions of Firefox, Chrome, or Opera
* Safari 9.1+
* Edge 16+
* iOS 10+
2013-10-24 20:25:52 +02:00
This allows the code to take advantage of the latest DOM and HTML5 APIs and make developing DevDocs a lot more fun!
## Scraper
The scraper is responsible for generating the documentation and index files (metadata) used by the [app](#app). It's written in Ruby under the `Docs` module.
2014-04-19 18:28:24 +02:00
There are currently two kinds of scrapers: `UrlScraper` which downloads files via HTTP and `FileScraper` which reads them from the local filesystem. They both make copies of HTML documents, recursively following links that match a set of rules and applying all sorts of modifications along the way, in addition to building an index of the files and their metadata. Documents are parsed using [Nokogiri](http://nokogiri.org).
2013-10-24 20:25:52 +02:00
Modifications made to each document include:
2015-01-14 02:29:19 +01:00
2014-01-27 00:26:37 +01:00
* removing content such as the document structure (`<html>`, `<head>`, etc.), comments, empty nodes, etc.
2013-10-24 20:25:52 +02:00
* fixing links (e.g. to remove duplicates)
* replacing all external (not scraped) URLs with their fully qualified counterpart
* replacing all internal (scraped) URLs with their unqualified and relative counterpart
2014-01-27 00:26:37 +01:00
* adding content, such as a title and link to the original document
2013-10-24 20:25:52 +02:00
2016-03-27 17:39:38 +02:00
These modifications are applied via a set of filters using the [HTML::Pipeline](https://github.com/jch/html-pipeline) library. Each scraper includes filters specific to itself, one of which is tasked with figuring out the pages' metadata.
2013-10-24 20:25:52 +02:00
2016-03-27 17:39:38 +02:00
The end result is a set of normalized HTML partials and two JSON files (index + offline data). Because the index files are loaded separately by the [app](#app) following the user's preferences, the scraper also creates a JSON manifest file containing information about the documentations currently available on the system (such as their name, version, update date, etc.).
2013-10-24 20:25:52 +02:00
2018-03-26 14:00:00 +02:00
More information about scrapers and filters is available on the [wiki](https://github.com/freeCodeCamp/devdocs/wiki).
2013-10-24 20:25:52 +02:00
## Available Commands
The command-line interface uses [Thor](http://whatisthor.com). To see all commands and options, run `thor list` from the project's root.
```
# Server
rackup # Start the server (ctrl+c to stop)
rackup --help # List server options
# Docs
thor docs:list # List available documentations
thor docs:download # Download one or more documentations
thor docs:manifest # Create the manifest file used by the app
thor docs:generate # Generate/scrape a documentation
thor docs:page # Generate/scrape a documentation page
thor docs:package # Package a documentation for use with docs:download
thor docs:clean # Delete documentation packages
2013-10-24 20:25:52 +02:00
# Console
thor console # Start a REPL
thor console:docs # Start a REPL in the "Docs" module
Note: tests can be run quickly from within the console using the "test" command. Run "help test"
for usage instructions.
# Tests
thor test:all # Run all tests
thor test:docs # Run "Docs" tests
thor test:app # Run "App" tests
2013-10-24 20:25:52 +02:00
# Assets
thor assets:compile # Compile assets (not required in development mode)
thor assets:clean # Clean old assets
```
If multiple versions of Ruby are installed on your system, commands must be run through `bundle exec`.
2013-10-24 20:25:52 +02:00
## Contributing
2018-11-07 13:12:26 +01:00
Contributions are welcome. Please read the [contributing guidelines](https://github.com/freeCodeCamp/devdocs/blob/master/.github/CONTRIBUTING.md).
2013-10-24 20:25:52 +02:00
2018-03-26 14:00:00 +02:00
DevDocs's own documentation is available on the [wiki](https://github.com/freeCodeCamp/devdocs/wiki).
2019-01-07 21:22:52 +01:00
## Documentation
* [Adding documentations to DevDocs](./docs/adding-docs.md)
* [Scraper Reference](./docs/scraper-reference.md)
* [Filter Reference](./docs/filter-reference.md)
* [Maintainers Guide](./docs/maintainers.md)
2013-10-24 20:25:52 +02:00
## Copyright / License
2019-01-20 21:50:21 +01:00
Copyright 2013-2019 Thibaut Courouble and [other contributors](https://github.com/freeCodeCamp/devdocs/graphs/contributors)
2013-10-24 20:25:52 +02:00
2018-03-26 14:00:00 +02:00
This software is licensed under the terms of the Mozilla Public License v2.0. See the [COPYRIGHT](https://github.com/freeCodeCamp/devdocs/blob/master/COPYRIGHT) and [LICENSE](https://github.com/freeCodeCamp/devdocs/blob/master/LICENSE) files.
2013-10-24 20:25:52 +02:00
Please do not use the name DevDocs to endorse or promote products derived from this software without the maintainers' permission, except as may be necessary to comply with the notice/attribution requirements.
2013-10-24 20:25:52 +02:00
We also wish that any documentation file generated using this software be attributed to DevDocs. Let's be fair to all contributors by giving credit where credit's due. Thanks!
2013-10-24 20:25:52 +02:00
## Questions?
If you have any questions, please feel free to ask them on the contributor chat room on [Gitter](https://gitter.im/FreeCodeCamp/DevDocs).