Gathering detailed insights and metrics for react-native-web
Gathering detailed insights and metrics for react-native-web
Gathering detailed insights and metrics for react-native-web
Gathering detailed insights and metrics for react-native-web
@react-spring/web
`react-dom` support
babel-plugin-react-native-web
Babel plugin for React Native for Web
react-native-safe-area-context
A flexible way to handle safe area, also works on Android and web.
react-native-web-linear-gradient
React Native for Web implementation of react-native-linear-gradient
npm install react-native-web
Typescript
Module System
Node Version
NPM Version
90
Supply Chain
85.8
Quality
80.2
Maintenance
100
Vulnerability
100
License
JavaScript (83%)
CSS (9.11%)
HTML (7.85%)
Shell (0.05%)
Total Downloads
97,001,407
Last Day
226,134
Last Week
976,799
Last Month
3,998,470
Last Year
34,105,920
MIT License
21,886 Stars
1,996 Commits
1,818 Forks
332 Watchers
21 Branches
187 Contributors
Updated on May 14, 2025
Minified
Minified + Gzipped
Latest Version
0.20.0
Package Id
react-native-web@0.20.0
Unpacked Size
2.84 MB
Size
571.85 kB
File Count
863
NPM Version
10.9.2
Node Version
22.14.0
Published on
Apr 03, 2025
Cumulative downloads
Total Downloads
Last Day
28.6%
226,134
Compared to previous day
Last Week
3.7%
976,799
Compared to previous week
Last Month
5.9%
3,998,470
Compared to previous month
Last Year
63.4%
34,105,920
Compared to previous year
"React Native for Web" makes it possible to run React Native components and APIs on the web using React DOM.
The documentation site (source) covers installation, guides, and APIs.
The examples app (source) demonstrates many available features. Fork the codesandbox to make changes and see the results.
You'll notice that there is no reference to react-dom
in components. The App
component that is shown below is defined using the APIs and Components of React Native, but it can also be rendered on the web using React Native for Web.
1// Example component 2import React from 'react'; 3import { AppRegistry, StyleSheet, Text, View } from 'react-native'; 4 5class App extends React.Component { 6 render() { 7 return ( 8 <View style={styles.box}> 9 <Text style={styles.text}>Hello, world!</Text> 10 </View> 11 ); 12 } 13} 14 15const styles = StyleSheet.create({ 16 box: { padding: 10 }, 17 text: { fontWeight: 'bold' } 18}); 19 20AppRegistry.registerComponent('App', () => App); 21AppRegistry.runApplication('App', { rootTag: document.getElementById('react-root') });
Development happens in the open on GitHub and we are grateful for contributions including bugfixes, improvements, and ideas. Read below to learn how you can take part in improving React Native for Web.
This project expects all participants to adhere to Meta's OSS Code of Conduct. Please read the full text so that you can understand what actions will and will not be tolerated.
Read the contributing guide to learn about the development process, how to propose bugfixes and improvements, and how to build and test your changes to React Native for Web.
To help you get you familiar with the contribution process, there is a list of good first issues that contain bugs which have a relatively limited scope. This is a great place to get started.
React Native for Web is MIT licensed. By contributing to React Native for Web, you agree that your contributions will be licensed under its MIT license.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
4 commit(s) and 4 issue activity found in the last 90 days -- score normalized to 6
Reason
Found 8/23 approved changesets -- score normalized to 3
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
16 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More