- Make sure you have installed dependencies
- Install Git if you don't have it installed in your development machine
-
Clone the repo
git clone https://github.com/microsoft/react-native-windows.git cd react-native-windows
-
Install dependencies, and run JS build steps
yarn yarn build
There are two ways to run the app. In a fully managed easy way, or by manually running all the required steps:
The playground app can be run in a completely automatic way by using react-native run-windows
.
If you haven't already, install the react-native-cli (One time only!)
npm install -g react-native-cli
Then
cd packages\playground
react-native run-windows
cd packages\playground
yarn start
-
Using MSBuild
MSBuild.exe [/p:Platform=$(TargetPlatform)] [/p:Configuration=$(TargetConfiguration)]
-
Using Visual Studio IDE
- Open
Playground.sln
. - Set your
Platform
tox86
orx64
andConfiguration
toDebug
. - Select
Project / Build Solution (Ctrl+Shift+B)
- Open
Open Chrome and navigate to http://localhost:8081/debugger-ui/
in a new tab. Press F12
or Ctrl+Shift+I
in Chrome to open its Developer Tools.
-
In Visual Studio, set Playground as the StartUp Project.
-
Run project (
F5
orDebug / Start Debugging
).
You now see your new app and Chrome should have loaded http://localhost:8081/debugger-ui/
in a new tab. Press F12
or Ctrl+Shift+I
in Chrome to open its Developer Tools.
- Press the "Load" button on the left side of the Windows 10 application window that appears.
The selected React Native component (defaulted to Bootstrap
) should get loaded in the bottom of the application window
Try out the various samples by selecting from the comboboxes at the top of the application window and pressing "Load".