react-native-app-console
v0.1.37
Published
App console for React Native
Readme
STILL IN DEVELOPMENT
App Console for React Native
Command from anywhere.
The goal is to create a simple developer interface to run commands from app.
Installation
npm install react-native-app-console --save
yarn add react-native-app-consoleUsage
Simple usage
import {AppConsole} from "react-native-app-console";
const App = () => {
return (
<>
<AppContainer />
<AppConsole options={{
name: 'My awesome app'
}} />
</>
);
}Test
npm run test