
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
react-native-create-bridge
Advanced tools
A CLI generator that creates React Native bridges with ease!
Bridging native modules & UI components made easy! If you're a JavaScript developer writing your first lines of native code or a more experienced developer looking to eliminate boilerplate from your React Native workflow, this tool is for you.
npm install --save react-native-create-bridge or yarn add react-native-create-bridgereact-native new-moduleDepending on your environment, there may be a couple more steps that you have to take. In future versions of react-native-create-bridge, we want to eliminate these steps.
MainApplication.java in android/app/src/main/java/com/yourapp@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new YourModulePackage()
);
}
import com.yourapp.yourmodule.YourModulePackage;android/build.gradle, add ext.kotlin_version = '1.1.2-4' to the buildscript and classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" to your dependenciesandroid/app/build.gradle, add apply plugin: 'kotlin-android' to the top of the file. At the bottom, add compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" to your dependenciesCode > Convert Java file to Kotlin file in the top menuMainApplication.kt in android/app/src/main/java/com/yourappoverride fun getPackages(): List<ReactPackage> {
return Arrays.asList(
MainReactPackage(),
YourModulePackage(),
)
}
import com.yourapp.yourmodule.YourModulePackageAdd Files To YourApp. Select the files associated with your module and click AddAppDelegate.h, MainApplication.java) to complete the bridging processcd to where you cloned itnpm install or yarnnpm run package:devreact-native new-module locally in a React Native project to test your changesnpm run test will run the Jest test suitereact-native-create-bridge is a new project and we would love feedback from the community on how it should evolve. Please report any 🐞s and let us know how you're using react-native-create-bridge!
If you would like to contribute, please read the contributor guidelines first.
This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to peggyrayzis@gmail.com.
A big thank you goes out to these awesome people for their contributions (emoji key):
Kurtis Kemple 💻 | Duy Bao Nguyen 💻 | Mike Grabowski 💬 | Peggy Rayzis 💻 📖 👀 | Mihovil 📝 | André Neves 👀 |
|---|---|---|---|---|---|
Jarret Moses 💻 📖 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
A CLI generator that creates React Native bridges with ease!
The npm package react-native-create-bridge receives a total of 109 weekly downloads. As such, react-native-create-bridge popularity was classified as not popular.
We found that react-native-create-bridge demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.