genny
is a tool designed to provide structure and a set of patterns
for React Native applications.
It’s should help eliminate the time you spend bootstrapping each project and give you consistency between your application builds.
While this comes with some opinion, there’s no overarching framework on top of React Native; it’s purely a collection of commonly used modules and some sensible architecture to get you or your team off the ground.
- Features - adds a set of commonly required features (e.g. Redux setup, offline storage, environment variables and more) by taking advantage of great. community driven packages
- Structure - provides a sensible structure to your applications that helps bring consitency within your team or just between your own applications.
- Scaffolding - makes it easy to scaffold new components, reducers and scenes that follow the same style and structure
npm install -g genny
yarn global add genny
Don’t want to install anything? You can run the commands directly using
npx
(available with npm@5.2.0
).
npx genny init
Create a new React Native project using their CLI tool.
react-native init MyApp && cd MyApp
Once this is complete, simply run the main generator command. This will rework
and add to the files that are generated by React Native and give you something
more akin to what you might find with rails new
.
genny init
- A sensible
README
providing consistent instructions between projects - Can optionally
init
Git for you - Router using
react-navigation
- Redux setup
- Store is persisted using
redux-persist
- Helpful state changes logged in the debugger using
redux-logger
- Actions are prevent from being dispatched before the cache is restored
- Store is persisted using
- UI niceities
- CSS-in-JS support for
styled-components
- Start to a styleguide to list your components
- Example Button component
- Layout component example to DRY up scene layouts
- Pattern to organise components and their styles
- CSS-in-JS support for
- Helpful utilities
log
helper to output coloured logs to the debug console- Visual display of your app’s environment while it’s running, this gets hidden in production
- Optional support for different locales using
react-native-i18n
- Environment variables available in JavaScript, Objective C and Java using
react-native-config
- Sagas (to handle async tasks like HTTP requests) using
redux-saga
- Initial setup for deep linking
- Requests are setup to be handled with
axios
with clear logging in the debugger provided - Automatic versioning of iOS and Android versions based on the
package.json
version - Pattern to manage Flow types across the app
- Generic app icon that can be processed through a separate generator to handle all your iOS and Android icons
After running the base
command, on top of the features above your application
will then receive this structure.
App/
├── Actions/
│ ├── App.js
│ └── index.js
├── Assets/
│ └── AppIcon.png
├── Components/
│ ├── App/
│ │ └── index.js
│ ├── Button/
│ │ ├── index.js
│ │ └── styles.js
│ ├── Layout/
│ │ ├── index.js
│ │ └── styles.js
│ ├── Text/
│ │ ├── index.js
│ │ └── styles.js
│ └── Utilities/
│ └── Environment/
│ ├── index.js
│ └── styles.js
├── Config/
│ ├── Locales/
│ │ └── en.json
│ └── index.js
├── Helpers/
│ ├── Translations.js
│ └── Log.js
├── Reducers/
│ ├── App.js
│ └── index.js
├── Sagas/
│ ├── index.js
│ └── RequestExample.js
├── Scenes/
│ ├── Styleguide/
│ │ ├── Container.js
│ │ └── index.js
│ ├── index.js
│ └── Main.js
├── Services/
│ └── API/
│ ├── index.js
│ └── logging.js
├── Store/
│ ├── Middleware/
│ │ ├── Buffer.js
│ │ ├── index.js
│ │ ├── Logger.js
│ │ └── Saga.js
│ └── index.js
├── Styles/
│ └── Variables/
│ └── index.js
├── Types/
│ └── index.js
├── App.js
└── Router.js
The default react-native init
now comes with tvOS targets... These add un-needed cruft to the project. Best plan is to open the XCode project, remove the tvOS targets and then delete the files in the project themselves.
Follow the Android version of these instructions to add automatic build numbers.
https://medium.com/@andr3wjack/versioning-react-native-apps-407469707661#.quhgn05gf