0.0.2 • Published 7 years ago

react-native-shared-code v0.0.2

Weekly downloads
9
License
-
Repository
-
Last release
7 years ago

react-native-shared-code

Analyses your React Native project and calculates the percentage of

  • shared code across platforms
  • platform specific code

Formula

The formulas are based on the two ways of targeting specific platforms in React Native:

Shared code

shared code

Platform specific

platform specific

Usage

Installation

You can install react-native-shared-code either as a global package or a local module.

Global package

npm install -g react-native-shared-code
react-native-shared-code path-to-react-native-project

Local package

npm install --save-dev react-native-shared-code

Add shared-code script to your package.json

{
  "scripts": {
    "shared-code": "react-native-shared-code"
  }
}

API

  Usage: react-native-shared-code [path] [options]


  Commands:

    [path]     path to React Native project (default value is cwd)

  Options:

    -h, --help    output usage information
    -v, --version output the version number
    -p, --platform platform for which to calculate the shared code percentages.
                   Accepted values are ios, android and windows.
                   By default, it detects index.platform.js for android, ios, windows
    --verbose output debugging info

Author

Fidan Hakaj

Acknowledgments