You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Dan Abramov a305ded256 Tweak wording based on @landermkerbey's suggestion in #10433#issuecomment-324488168 7 years ago
_css fix misspellings in comments and tests (#8946) 8 years ago
_data Ensure all external links have consistent behavior (#11012) 7 years ago
_includes include the version number in the header (#8315) 8 years ago
_js Fix lint 7 years ago
_layouts Correct logo url (#11090) 7 years ago
_plugins Replace the header_links plugin with client-side generated anchors. (#4165) 8 years ago
_posts Fix blog issues that resulted from migration (#11089) 7 years ago
blog [docs] Don't make authors links on all posts page 9 years ago
community Update conferences (#10781) 7 years ago
contributing Fix all GitHub issues and PRs query params (#11066) 7 years ago
css Replace the header_links plugin with client-side generated anchors. (#4165) 8 years ago
docs Fixes example in Web Components docs (#11039) 7 years ago
downloads Fix React links on the website (#10837) 7 years ago
img Wop optimized this repository (#10374) 7 years ago
js [site] Load libraries from unpkg (#9499) 8 years ago
tutorial Tweak wording based on @landermkerbey's suggestion in #10433#issuecomment-324488168 7 years ago
warnings [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" (#10970) 7 years ago
404.md Finish Jekyll 3 Upgrade 8 years ago
Gemfile Upgrade to Jekyll 3 8 years ago
Gemfile.lock [Tutorial] Make it easier to follow the instructions (#9454) 8 years ago
README.md [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" (#10970) 7 years ago
Rakefile Delete addons (#9209) 8 years ago
_config.yml [Gatsby] "https://facebook.github.io/react/" -> "https://reactjs.org/" (#10970) 7 years ago
acknowledgements.md Add new docs website (#10896) 7 years ago
circle.yml Don't build gh-pages branch on CircleCI (#9442) 8 years ago
crowdin.yaml Adding Crowdin config file to master repo (#10579) 7 years ago
favicon.ico Initial public release 12 years ago
feed.xml Finish Jekyll 3 Upgrade 8 years ago
html-jsx.html [docs] Use existing layout for redirecting html-jsx (#6904) 9 years ago
index.md Ensure all external links have consistent behavior (#11012) 7 years ago
jsx-compiler.md Finish Jekyll 3 Upgrade 8 years ago

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.