npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@codepso/rn-rad

v1.0.34

Published

Rapid application development for React Native

Downloads

41

Readme

rn-rad

CLI for React Native, boilerplates and generators. Rapid Application Development (RAD) model for React Native.

npm Package downloads per month JavaScript Style Guide

Table of content

Requirements

You need the following requirements:

  • node 10+
  • npm & npx

Installation

npm install -g @codepso/rn-rad
npm update -g @codepso/rn-rad

Commands

Initializers (i)
rn-rad i packages [redux=true]
rn-rad i structure [redux=true]
rn-rad i project [resources=true]

Generators (g)
rn-rad g component [name] [path]
rn-rad g screen [name] [path]
rn-rad g form [name] [path] [screen=true]

About
rn-rad help
rn-rad version

command: i packages [options]

install the most used packages and pod's (ios)

  • --redux (-r) Flag to indicate if a redux packages will be added, default: true
  • --lang (-l) Flag to indicate if languages packages will be added, default: true
rn-rad i packages
rn-rad i packages --redux false
rn-rad i packages -r false

rn-rad i packages --lang false
rn-rad i packages -l false
Icons

ios/AwesomeProject/info.plist

<key>UIAppFonts</key>
<array>
  <string>MaterialCommunityIcons.ttf</string>
  <string>MaterialIcons.ttf</string>
</array>

android/app/build.gradle

project.ext.vectoricons = [
    iconFontNames: ['MaterialIcons.ttf', 'MaterialCommunityIcons.ttf']
]

apply from: "../../node_modules/react-native-vector-icons/fonts.gradle"

command: i structure [options]

Create the directory structure

  • --redux (-r) Flag to indicate if redux directory will be added, default: true
  • --lang (-l) Flag to indicate if i18n directory will be added, default: true
rn-rad i structure
rn-rad i structure --redux false
rn-rad i structure -r false

rn-rad i structure --lang false
rn-rad i structure -l false

command: i project [options]

Add a theme, styles, images and helpers to RN project, rn-rad.config.js will be created Note: i structure (it's required)

  • --resources (-r) Flag to indicate if the resources will be added, default: true
rn-rad i project
rn-rad i project --resource false
rn-rad i project -r false

command: g theme [name]

Create a new theme (styles, colors)

  • name: theme name (use kebab-case)
rn-rad g theme
rn-rad g theme codepso

command: g screen [name] [options]

Create a screen

  • name: Screen name (use UpperCamelCase)
  • --path (-p): Flag to indicate the path where it will be created, default: src/screens
rn-rad g screen
rn-rad g screen Welcome
rn-rad g screen Welcome --path src/screens/home
rn-rad g screen Welcome -p src/screens/home

command: g component [name] [options]

Create a component

  • name: Component name (use UpperCamelCase)
  • --path (-p) Flag to indicate the path where it will be created, default: src/components
rn-rad g component
rn-rad g component Footer
rn-rad g component Footer --path src/ui
rn-rad g component Footer -p src/ui

command: g form [name] [options]

Create a form Require: yup, formik.

  • name: Form name (use UpperCamelCase)
  • --path (-p) Flag to indicate the path where it will be created, default: src/forms
  • --view (-v) Flag to indicate if the view will be created, default: true
rn-rad g form
rn-rad g form User

rn-rad g form User --path src/forms/user
rn-rad g form User -p src/forms/user

rn-rad g form User --view false
rn-rad g form User -v false

rn-rad g form User -p src/forms/user -v false

Packages

  • React Native 0.6.1+
  • React Navigation 5+
  • React Native Paper 3.10+/4
  • Vector Icons 6
  • Redux
  • Yup
  • Formik
  • React Native Localize
  • i18n js
  • React Native Helper

License

The React RAD is licensed under the terms of the GPL Open Source license and is available for free.