react/docs
Nathan Hunzaker d7157651f7 Add controlList to DOM property whitelist (#9940)
See:

- https://github.com/WICG/controls-list/blob/gh-pages/explainer.md
- https://developers.google.com/web/updates/2017/03/chrome-58-media-updates#controlslist
2017-06-12 21:09:33 -04:00
..
_css fix misspellings in comments and tests (#8946) 2017-02-13 16:01:54 -06:00
_data Add 'Test Utils' docs back to main navigation (#9676) 2017-05-26 07:47:18 -07:00
_includes include the version number in the header (#8315) 2016-11-16 16:26:21 -08:00
_js Rename Github to GitHub (#9797) 2017-05-29 07:36:14 -04:00
_layouts [Docs] Show the name 'React' first in the homepage's <title> (#9582) 2017-05-02 14:22:24 +01:00
_plugins Replace the header_links plugin with client-side generated anchors. (#4165) 2017-03-01 11:52:54 -08:00
_posts Fix doc styling and formatting issues 2017-06-10 00:04:50 +01:00
blog [docs] Don't make authors links on all posts page 2015-10-15 12:18:15 -07:00
community Move Past Confs, add React Conf Brazil 2017 (#9697) 2017-06-09 22:55:18 +01:00
contributing Update webpack according to brand guidelines (#9595) 2017-06-05 10:01:43 -05:00
css Replace the header_links plugin with client-side generated anchors. (#4165) 2017-03-01 11:52:54 -08:00
docs Add controlList to DOM property whitelist (#9940) 2017-06-12 21:09:33 -04:00
downloads Revert "update react perf docs (#8060) and (#6174)" (#8997) 2017-02-13 23:43:08 +00:00
img New blog post: What's New in Create React App (#9719) 2017-05-19 05:31:35 +01:00
js [site] Load libraries from unpkg (#9499) 2017-04-26 14:02:50 +01:00
tutorial Fix typo on tutorial.md. (#9644) 2017-05-10 08:23:53 +01:00
warnings Fix the proptypes deprecation warning url on the "Don't Call PropTypes Warning" doc page (#9419) 2017-04-13 15:15:34 +01:00
404.md Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
Gemfile Upgrade to Jekyll 3 2016-07-19 12:18:49 -07:00
Gemfile.lock [Tutorial] Make it easier to follow the instructions (#9454) 2017-05-01 17:22:26 +01:00
README.md Clarify where docs live 2017-05-01 13:39:10 +01:00
Rakefile Delete addons (#9209) 2017-03-20 16:15:01 +00:00
_config.yml Update website for 15.4.0 2016-11-16 14:51:47 +00:00
acknowledgements.md Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
circle.yml Don't build gh-pages branch on CircleCI (#9442) 2017-04-22 22:33:43 +01:00
favicon.ico
feed.xml Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00
html-jsx.html [docs] Use existing layout for redirecting html-jsx (#6904) 2016-05-26 23:50:55 -07:00
index.md [site] Load libraries from unpkg (#9499) 2017-04-26 14:02:50 +01:00
jsx-compiler.md Finish Jekyll 3 Upgrade 2016-07-19 15:08:58 -07:00

README.md

React Documentation & Website

Read the React Documentation

This folder is not the right place to read the documentation.

Instead, head over to the React website to read it.

This folder only contains the source code for the website.

Installation

If you are working on the site, you will want to install and run a local copy of it.

We use Jekyll to build the site using (mostly) Markdown, and we host it by pushing HTML to GitHub Pages.

Dependencies

In order to use Jekyll, you will need to have Ruby installed. macOS comes pre-installed with Ruby, but you may need to update RubyGems (via gem update --system). Otherwise, RVM and rbenv are popular ways to install Ruby.

The version of the Pygment syntax highlighter used by Jekyll requires Python 2.7.x (not 3.x). macOS comes pre-installed with Python 2.7, but you may need to install it on other OSs.

Once you have RubyGems and installed Bundler (via gem install bundler), use it to install the dependencies:

$ cd react/docs
$ bundle install # Might need sudo.
$ npm install

Instructions

The site requires React, so first make sure you've built the project (via grunt).

Use Jekyll to serve the website locally (by default, at http://localhost:4000):

$ cd react/docs
$ bundle exec rake
$ bundle exec rake fetch_remotes
$ bundle exec jekyll serve -w
$ open http://localhost:4000/react/index.html

We use SASS (with Bourbon) for our CSS, and we use JSX to transform some of our JS. If you only want to modify the HTML or Markdown, you do not have to do anything because we package pre-compiled copies of the CSS and JS. If you want to modify the CSS or JS, use Rake to compile them:

$ cd react/docs
$ bundle exec rake watch # Automatically compiles as needed.
# bundle exec rake         Manually compile CSS and JS.
# bundle exec rake js      Manually compile JS, only.

Afterthoughts

Updating facebook.github.io/react

The easiest way to do this is to have a separate clone of this repository, checked out to the gh-pages branch. We have a build step that expects this to be in a directory named react-gh-pages at the same depth as react. Then it's just a matter of running grunt docs, which will compile the site and copy it out to this repository. From there, you can check it in.

Note: This should only be done for new releases. You should create a tag corresponding to the release tag in the main repository.

We also have a rake task that does the same thing (without creating commits). It expects the directory structure mentioned above.

$ bundle exec rake release

Removing the Jekyll / Ruby Dependency

In an ideal world, we would not be adding a Ruby dependency on part of our project. We would like to move towards a point where we are using React to render the website.