Gathering detailed insights and metrics for react-native-template-pro
Gathering detailed insights and metrics for react-native-template-pro
npm install react-native-template-pro
Typescript
Module System
Node Version
NPM Version
75.1
Supply Chain
99.4
Quality
76
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
7,980
Last Day
2
Last Week
30
Last Month
98
Last Year
805
19 Stars
44 Commits
5 Forks
5 Watching
1 Branches
1 Contributors
Latest Version
1.3.11
Package Id
react-native-template-pro@1.3.11
Unpacked Size
3.85 MB
Size
3.60 MB
File Count
61
NPM Version
6.4.1
Node Version
10.11.0
Cumulative downloads
Total Downloads
Last day
0%
2
Compared to previous day
Last week
328.6%
30
Compared to previous week
Last month
12.6%
98
Compared to previous month
Last year
5.6%
805
Compared to previous year
No dependencies detected.
A React Native template with a nice folder structure, navigation, database, async and debugging tools support.
react-native init MyMillionDollarApp --template pro
cd MyMillionDollarApp
react-native run-ios
or react-native run-android
1import React, {Component} from 'react'; 2import PropTypes from 'prop-types'; 3import {View, Text, StyleSheet} from 'react-native'; 4 5export default class $ComponentName$ extends Component { 6 render() { 7 return ( 8 <View> 9 <Text>$ComponentName$</Text> 10 $END$ 11 </View> 12 ); 13 } 14} 15 16$ComponentName$.propTypes = {}; 17const styles = StyleSheet.create({});
1import React, {Component} from 'react'; 2import PropTypes from 'prop-types'; 3import {connect} from 'react-redux'; 4import {bindActionCreators} from 'redux'; 5import * as $storeProp$Actions from '../actions/$storeProp$'; 6import {View, Text, StyleSheet} from 'react-native'; 7 8class $ComponentName$ extends Component { 9 10 render() { 11 12 return ( 13 <View> 14 <Text>$ComponentName$</Text> 15 $END$ 16 </View> 17 ); 18 19 } 20 21} 22 23$ComponentName$.propTypes = { 24 //TODO: data 25 error: PropTypes.shape({ 26 $storeProp$: PropTypes.bool 27 }), 28 loading: PropTypes.shape({ 29 $storeProp$: PropTypes.bool 30 }), 31}; 32 33const styles = StyleSheet.create({ 34 35}); 36 37const mapStateToProps = state => ({ 38 data: { 39 $storeProp$: state.$storeProp$.data 40 }, 41 error: { 42 $storeProp$: state.$storeProp$.error 43 }, 44 loading: { 45 $storeProp$: state.$storeProp$.loading 46 }, 47}); 48 49const mapDispatchToProps = dispatch => { 50 return { 51 actions: { 52 $storeProp$: bindActionCreators($storeProp$Actions, dispatch), 53 } 54 }; 55}; 56 57export default connect(mapStateToProps, mapDispatchToProps)($ComponentName$);
1import React from 'react'; 2import PropTypes from 'prop-types'; 3import { 4 View, 5 Text 6} from 'react-native'; 7 8const $ComponentName$ = () => ( 9 <View> 10 <Text>$ComponentName$</Text> 11 $END$ 12 </View> 13); 14 15$ComponentName$.propTypes = {}; 16 17export default $ComponentName$;
1console.display('$var$', $var$);
1console.tron('$var$');
This is an initial release, feel free to submit your issues or PR's!
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-01-20
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