Skip to content

elizamaria/react-native-chunky

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

React Native Chunky Helps You Digest Your React Mobile Apps In Manageable Chunks.

React Native Chunky

Version Author Tweet

Overview

Chunky helps you build solid React Web and Mobile apps, faster and easier. It does that by splitting up parts of your app into more manageable sections - or Chunks.

Installation

To install React Native Chunky add the dependency to your app. Please not that it includes react-native so you don't need to add it to your app prior to installing React Native Chunky.

npm install --save react-native-chunky

Getting Started

To add React Native Chunky to your app, you need to call renderApp with the appropriate properties. Those include your app reducers, initial route, app name, custom styles and app configuration details. Here's what that would look like in practice:

import { reducers }           from './js/data'
import { Styles as styles }   from './js/styles'
import { START_ROUTE }        from './js/routes'
import * as config            from './js/config'
import { renderApp }          from 'react-native-chunky'

renderApp({
  name: 'MyApp',
  initialRoute: START_ROUTE,
  reducers, styles, config
})

Writing Chunks

After bootstrapping your React Native app as shown above, using React Chunky inside your React Native App is not much different than using it for Web apps. The core React Chunky library is platform-independent and can simply be generally used is similar fashion in both Web and Mobile apps.

Have a look at Writing A Real-World Chunk for more details on what constitutes a full-blown Chunk.

License

Copyright (c) 2016 I. Dan Calinescu

Licensed under the The MIT License (MIT) (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

https://raw.githubusercontent.com/idancali/react-native-chunky/master/LICENSE

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

A modular approach to building React Mobile apps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published