JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 9
  • Score
    100M100P100Q65600F
  • License ISC

A React Native Template.

Package Exports

  • react-native-app-starter
  • react-native-app-starter/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-native-app-starter) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

react-native-app-starter

This project is a React Native boilerplate that can be used to kickstart a mobile application.

The boilerplate provides an optimized architecture for building solid cross-platform mobile applications through separation of concerns between the UI and business logic. It contains redux, saga, context, theme, localization, tabs and stack navigation.


npm version

Getting Started

Creates a new React Native project with TypeScript template:

# Using npx with default package manager (bun)
$ npx react-native-app-starter <ProjectName>

# Using bunx with default package manager (bun)
$ bunx react-native-app-starter <ProjectName>

# Specifying a different package manager
$ npx react-native-app-starter <ProjectName> --pm yarn
$ npx react-native-app-starter <ProjectName> --pm npm

$ cd <ProjectName>

$ npx react-native run-ios

$ npx react-native run-android

Package Manager Options

The CLI supports three package managers:

  • bun (default) - Automatically installed if not present
  • yarn - Prompts for installation if not present
  • npm - Should be available with Node.js installation

Directory Structure

root
├── __tests__
├── android
├── ios
└── App
    └── ApiConfig
    └── AppContext
    └── Routes
    └── Screens
    |    CommonComponent
    |    Components
    |    SubComponents
    └── Services
    └── Slices
    |   ├──Default
    └── Stores
    └── Thunks
    └── Theme
    |    Images
    |    Colors
    └── Utils
├── fastlane
├── .env
...

Preconfigured with

  • Latest react native version

  • Redux Toolkit

  • Theme support (Dark / Light)

  • Utility for validations and error messages

  • Custom font and font size for maintain typography

  • .env and fastlane setup

  • Support different env for PRODUCTION and DEVELOPMENT

  • User Authentication flow

  • UI for Login, Tabs and Settings


Predefined UI

Expand for screenshots
iOS

Android

Development

This CLI tool is built with TypeScript and provides a modular architecture for easy maintenance and testing.

Project Structure

├── src/
│   ├── config/           # Configuration constants
│   ├── services/         # Business logic services
│   ├── utils/           # Utility functions
│   ├── types/           # TypeScript type definitions
│   └── index.ts         # Main exports
├── dist/                # Compiled JavaScript output
├── index.ts            # CLI entry point
└── tsconfig.json       # TypeScript configuration

Available Commands

  • npm run build - Compile TypeScript to JavaScript
  • npm run dev - Build and run the CLI tool
  • npm run test:modules - Run example tests
  • npm run clean - Remove compiled output

Building from Source

# Clone the repository
git clone <repo-url>
cd react-native-app-starter

# Install dependencies
npm install

# Build the project
npm run build

# Test the CLI
node dist/index.js --help

Running with npx/bunx

After publishing, the package can be used with:

# Using npx
npx react-native-app-starter my-app

# Using bunx
bunx react-native-app-starter my-app