
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-native-template-ts-plus
Advanced tools
React Native TypeScript Template with Superpowers.
~/ prefix.npx react-native init MyApp --template react-native-template-ts-plus
Or use custom App Name and/or directory
npx react-native init MyApp --title 'My App' --directory 'my-app' --template react-native-template-ts-plus
npx react-native init MyApp --template react-native-template-ts-plus@1.0.*
See the below table to find out which version of the template to use.
| React Native | Template |
|---|---|
| 0.70.7 | 5.1.* |
| 0.70.5 | 5.0.* |
| 0.69.5 | 4.1.* |
| 0.69.2 | 4.0.* |
| 0.68.2 | 3.1.* |
| 0.68.1 | 3.0.* |
| 0.66.3 | 2.0.* |
| 0.64.2 | 1.1.* |
| 0.64.1 | 1.0.* |
This should no longer happen on RN 0.68.1 and up (Template Version 3.0.0+).
This seems to happen on APFS Case Sensitive Filesystems when Flipper is enabled.
Thanks to felexx90 for providing this solution.
Edit ios/Podfile and add the following lines inside post_install.
post_install do |installer|
react_native_post_install(installer)
# Fix OpenSSL-Universal on APFS Case Sensitive Filesystem
system('cd Pods/Headers/Public; ln -s Protobuf protobuf')
system('cd Pods/OpenSSL-Universal/Frameworks/OpenSSL.xcframework/ios-arm64_arm64e_armv7_armv7s; ln -sfh OpenSSL.framework openssl.framework')
system('cd Pods/OpenSSL-Universal/Frameworks/OpenSSL.xcframework/ios-arm64_i386_x86_64-simulator; ln -sfh OpenSSL.framework openssl.framework')
system('cd Pods/OpenSSL-Universal/Frameworks/OpenSSL.xcframework/ios-arm64_x86_64-maccatalyst; ln -sfh OpenSSL.framework openssl.framework')
system('cd Pods/OpenSSL-Universal/Frameworks/OpenSSL.xcframework/macos-arm64_arm64e_x86_64; ln -sfh OpenSSL.framework openssl.framework')
end
Now, reinstall pods.
cd ios && pod install
If you do not need flipper you can just disable it to fix this error.
Edit ios/Podfile and comment out use_flipper!().
# use_flipper!()
Now, reinstall pods and update repo.
cd ios && pod install --repo-update
Contributions are very welcome. Please check out the contributing document.
This project is MIT licensed.
This repository and template is soft-forked from react-native-template-typescript .
All integrated and pre-configured libraries are the hard work of their respective authors and contributors.
The Awesome React Native Community
FAQs
A React Native TypeScript Template with Superpowers
We found that react-native-template-ts-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.