react/docs
Jim 2f24f89111 Merge pull request #6281 from rgarifullin/microfix_docs
Microfix docs
2016-03-19 11:24:27 -07:00
..
_css 0.14 RC blog post 2015-09-10 09:21:56 -07:00
_data Added icon for external links in Docs nav and unlinked Complementary Tools and Examples in favor of this icon 2016-02-23 02:18:20 +00:00
_includes Fix blog post authors 2015-10-14 18:01:33 -07:00
_js Year-agnostic copyright message, like React Native uses, to prevent the need for yearly changes. 2015-12-29 20:20:32 +01:00
_layouts Introduce search 2016-03-07 13:15:41 -08:00
_plugins Don't add class="" if we don't need to 2016-02-29 16:30:03 -08:00
_posts Add v15 RC2 blog post 2016-03-16 21:48:24 +00:00
blog [docs] Don't make authors links on all posts page 2015-10-15 12:18:15 -07:00
css Introduce search 2016-03-07 13:15:41 -08:00
docs Merge pull request #6281 from rgarifullin/microfix_docs 2016-03-19 11:24:27 -07:00
downloads Add v15 RC2 download 2016-03-16 22:22:47 +00:00
img Introduce search 2016-03-07 13:15:41 -08:00
js Update website for 0.14.7 2016-01-28 12:28:25 -08:00
tips Update documentation to stateless components 2016-02-15 10:24:04 -08:00
404.md Simple custom 404 page. 2014-06-24 14:11:37 -07:00
Gemfile Use jekyll-redirect-from instead of our other redirect method 2014-08-13 12:38:09 -07:00
Gemfile.lock [docs] Replace JSXTransformer with babel/browser 2015-09-25 20:13:19 -07:00
README.md npm without -g should never need sudo 2015-03-24 19:47:31 -07:00
Rakefile [docs] Upgrade to work with babel 6, fetch remote babel-browser for now 2016-03-07 10:37:06 -08:00
_config.yml [docs] Automate SRI hash generation with rake task 2016-02-10 12:11:45 -08:00
acknowledgements.md Add thanks for the react org 2016-02-12 14:50:37 -08:00
downloads.md [docs] Reformat script tags on download page 2016-02-10 12:13:01 -08:00
favicon.ico Initial public release 2013-05-29 12:54:02 -07:00
feed.xml [docs] RSS: Pass title through xml_escape 2013-06-03 11:36:04 -07:00
html-jsx.md Change script src for htmltojsx.min.js to referral target to fix https error 2016-02-22 16:20:23 -05:00
index.md remove type="text/javascript" 2015-07-11 15:02:54 +09:00
jsx-compiler.md [docs] Stop supporting our JSX compiler page 2015-09-25 17:56:42 -07:00
support.md Pre-fill tag when asking a Stack Overflow question 2015-09-09 11:28:14 -07:00

README.md

React Documentation & Website

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

Installation

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

Dependencies

In order to use Jekyll, you will need to have Ruby installed.

Mac OS X 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. 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 jekyll serve -w
$ open http://localhost:4000/react/

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.