0.0.6 • Published 8 years ago
react-native-bunker v0.0.6
Bunker
Build your react-native app with several package.
Install
npm install -s react-native-bunkerUsage
step 1
Init .bunkerc
./node_modules/.bin/react-native-bunker initThis step maybe executed automically when install.
step 2
step 3
Fix import dependencies in your codes.
You should change :
import React, {Component} from 'react'; ...or :
var React = require('react'); ...to :
import Bunker from 'react-native-bunker'; const { React, React: { Component }, ReactNative: { View, ... } ... } = Bunker.Modules;step 4
Change
entry fileto${App.name}Entrylike :requie('${App.name}Entry')${App.name}is the name inapp.json, just camelCase;step 5
Bundle your app packages
./node_modules/.bin/react-native-bunker bundle
Then Command + R to reload your app.
Advance and More
I'll come back soon.