mirror of
https://github.com/status-im/react-native.git
synced 2025-02-06 14:43:49 +00:00
f48babaa5e
Summary: Right now systrace generates an html file that is using the Object.observe function which is now deprecated in most up to date browsers. Since we don't want to depend on the systrace being up to date, we should advise opening the trace through the Tracing tool, since that is the only way to get it working until systrace removes its dependency on Object.observe. Closes https://github.com/facebook/react-native/pull/7880 Differential Revision: D3516305 Pulled By: astreet fbshipit-source-id: ab9ae46ba74b7a34b6cfb8c37ca1ec2e6b41e353
Install prerequisites
Before running the website, make sure you've run the following:
git clone https://github.com/facebook/react-native.git
cd react-native
npm install
Run the website server
The first time, get all the website dependencies loaded via
cd website
npm install
Then, run the server via
npm start
open http://localhost:8079/react-native/index.html
Anytime you change the contents, just refresh the page and it's going to be updated.
Publish the website
cd website
npm run publish-website