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.
 
 
 
 
Nate Lee f603cb710b Fixup missing semi-colon 9 years ago
_css 0.14 RC blog post 9 years ago
_data Added post about components, elements, and instances 9 years ago
_includes Fix blog post authors 9 years ago
_js Year-agnostic copyright message, like React Native uses, to prevent the need for yearly changes. 9 years ago
_layouts Add in missing closing </li> for docs template 9 years ago
_plugins Fix blog post authors 9 years ago
_posts Merge pull request #5834 from spicyj/no-ie8 9 years ago
blog [docs] Don't make authors links on all posts page 9 years ago
css Fix few typos in React docs and comments 9 years ago
docs Clarify stateless function component optimizations. 9 years ago
downloads Update website for 0.14.6 9 years ago
img Fixed typo in shouldComponentUpdate.png 9 years ago
js Fixup missing semi-colon 9 years ago
tips Fix example from #5870 to avoid double rendering 9 years ago
404.md Simple custom 404 page. 10 years ago
Gemfile Use jekyll-redirect-from instead of our other redirect method 10 years ago
Gemfile.lock [docs] Replace JSXTransformer with babel/browser 9 years ago
README.md npm without -g should never need sudo 10 years ago
Rakefile [docs] Replace JSXTransformer with babel/browser 9 years ago
_config.yml Update website for 0.14.6 9 years ago
acknowledgements.md SSL/TLSize all the things! (convert http:// to https:// where appropriate) 10 years ago
downloads.md Added react-dom to individual downloads 9 years ago
favicon.ico Initial public release 12 years ago
feed.xml [docs] RSS: Pass title through xml_escape 12 years ago
html-jsx.md Fix HTML to JSX converter to work with https 10 years ago
index.md remove type="text/javascript" 9 years ago
jsx-compiler.md [docs] Stop supporting our JSX compiler page 9 years ago
support.md Pre-fill tag when asking a Stack Overflow question 9 years ago

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.