React Native
.c.f.
- React
- React Native - Android Specifics
- Angular
Building
Ensure thet you package.json
file has an line similar to:
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/the-app-name/main.jsbundle' --dev=false --platform='ios' --assets-dest='./ios'"
}
Then:
npm run build:ios
React Native 0.57.3
0.57.3 has been released and if you’ve tried creating a new project with it you might have experienced a crash when running your app. A fix should be in the next version, but in the meantime, run the following code to get back up and running.
rm -rf node_modules/ && yarn cache clean && yarn install && rm -rf ~/.rncache
cd ./node_modules/react-native/scripts
./ios-install-third-party.sh
cd ../../..
cd ./node_modules/react-native/third-party/glog-0.3.5
./configure
cd ../../../..
YellowBox warnings
React Native’s YellowBox warnings can be disabled via:
console.disableYellowBox = true
Also, own warnings via
console.warn("I'm broken, get someone to fix, to fix, to..")
Go & React Native
Learning
UWP
- MS article on using React Native and UWP.
WPF
- Y-combinator dicussion
- GitHub react-native-wpf
- A showcase of React Native apps.
Run the tutorial
Don’t forget Exponent
And you will need to learn [[JSX]]
Links to be filed or read
- 5 Reasons
- React Native Getting Started
- How to Get Started with React Native
- React Native Tutorial: Building iOS Apps with JavaScript
- Create a React Native app on any OS with no build config.
- A showcase of Apps build with React Native.
- React native Express
- UIExplorer
- A curated list of React Native Apps
- React native Examples
- React native on EdgeCoders
- Build a React Native Music App tutorial
- How to build a real-time todo app with React Native
- My First React Native App — From Start to Finish
Expo (Exponent) & React.Native
- Learn Exponent, the iOS developer’s app.
- The Joys of building React Native Apps with Expo
- Compile React Native Apps with Microsoft App Center
- How I Ditched Expo for Pure React Native