I\'m doing the React.js tutorial from http://facebook.github.io/react/docs/tutorial.html. Here are my files:
template.html:
Expanding on #2 from Paul O'Shannessy's answer.
The nice solution is :
If you have python2.x:
$ cd /myreact-project/htmlfiles/
$ python -m SimpleHTTPServer
For python3.x
$ cd /myreact-project/htmlfiles/
$ python -m http.server
You can then point your browser to http://192.168.1.2:8000/ or where ever the python module is serving your files and use it from any browser without hassles.