1# React TodoMVC Example
2
3> React is a JavaScript library for creating user interfaces. Its core principles are declarative code, efficiency, and flexibility. Simply specify what your component looks like and React will keep it up-to-date when the underlying data changes.
4
5> _[React - facebook.github.io/react](http://facebook.github.io/react)_
6
7
8## Learning React
9
10The [React getting started documentation](http://facebook.github.io/react/docs/getting-started.html) is a great way to get started.
11
12Here are some links you may find helpful:
13
14* [Documentation](http://facebook.github.io/react/docs/getting-started.html)
15* [API Reference](http://facebook.github.io/react/docs/reference.html)
16* [Blog](http://facebook.github.io/react/blog/)
17* [React on GitHub](https://github.com/facebook/react)
18* [Support](http://facebook.github.io/react/support.html)
19
20Articles and guides from the community:
21
22* [Philosophy](http://www.quora.com/Pete-Hunt/Posts/React-Under-the-Hood)
23* [How is Facebook's React JavaScript library](http://www.quora.com/React-JS-Library/How-is-Facebooks-React-JavaScript-library)
24* [React: Under the hood](http://www.quora.com/Pete-Hunt/Posts/React-Under-the-Hood)
25
26Get help from other React users:
27
28* [React on StackOverflow](http://stackoverflow.com/questions/tagged/reactjs)
29* [Mailing list on Google Groups](https://groups.google.com/forum/#!forum/reactjs)
30*
31_If you have other helpful links to share, or find any of the links above no longer work, please [let us know](https://github.com/tastejs/todomvc/issues)._
32
33
34## Running
35
36The app is built with [JSX](http://facebook.github.io/react/docs/jsx-in-depth.html) and compiled at runtime for a lighter and more fun code reading experience. As stated in the link, JSX is not mandatory.
37
38To run the app, spin up an HTTP server (e.g. `python -m SimpleHTTPServer`) and visit http://localhost/.../myexample/.
39