npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

react-native-template-paisen

v0.0.9

Published

React Native Template Base

Downloads

69

Readme

🚀 React Native Paisen Template

A modern, production-ready React Native template with TypeScript, Redux Toolkit, React Navigation, and many pre-configured features to kickstart your mobile app development.

npm downloads npm version License: MIT

✨ Features

🏗️ Architecture & State Management

  • TypeScript - Type safety and better development experience
  • Redux Toolkit - Modern Redux with simplified store management
  • React Navigation v7 - Stack and Bottom Tab navigation
  • Custom Hooks - Reusable logic with hooks pattern

🎨 UI & Styling

  • Custom Components - Pre-built reusable UI components
  • Typography System - Consistent text styling
  • Color Palette - Organized color constants
  • Icon System - SVG icon components
  • Fast Image - Optimized image loading

🌐 Internationalization & Services

  • i18next - Multi-language support
  • HTTP Client - Axios-based API service layer
  • Async Storage - Persistent local data storage

🧪 Development Tools

  • ESLint - Code linting and formatting
  • Jest - Unit testing framework
  • React Native DevSettings - Development utilities
  • Metro Config - Optimized bundler configuration

🚀 Quick Start

Create a new project

npx @react-native-community/cli init MyApp --template react-native-template-paisen

Alternative methods:

# Using GitHub URL
npx @react-native-community/cli init MyApp --template https://github.com/thangpaisen/react-native-paisen.git

# Using local template
npx @react-native-community/cli init MyApp --template file:///path/to/react-native-template-paisen

Navigate to your project

cd MyApp

📱 Running the Application

Prerequisites

Make sure you have completed the React Native - Environment Setup instructions.

iOS

# Install iOS dependencies
cd ios && pod install && cd ..

# Run on iOS simulator
npm run ios

# Clean iOS build
npm run ios:clean

Android

# Run on Android emulator/device
npm run android

# Build release APK
npm run android:release

# Build release AAB
npm run android:aab

# Clean Android build
npm run android:clean

Development

# Start Metro bundler
npm start

# Run tests
npm test

# Lint code
npm run lint

📁 Project Structure

src/
├── Assets/          # Static assets (fonts, icons, images)
├── Components/      # Reusable UI components
├── Constants/       # App constants (colors, fonts, texts)
├── Hooks/          # Custom React hooks
├── I18n/           # Internationalization setup
├── Models/         # TypeScript type definitions
├── Navigators/     # Navigation configuration
├── Redux/          # State management (store, slices, thunks)
├── Screens/        # Screen components
├── Services/       # API services and HTTP client
└── Utils/          # Utility functions

🧩 Components Structure

  • Button - Customizable button component
  • CheckBox - Checkbox input component
  • Header - Navigation header component
  • IconSvg - SVG icon wrapper
  • Input - Advanced TextInput component with animated label
  • InputField - React Hook Form integration wrapper
  • Loading - Loading indicator component
  • Popup - Modal popup component
  • Text - Typography component with theme support
  • Toast - Notification toast with Redux state management and gesture support

🔄 Redux Structure

  • Store - Centralized state management
  • Slices - Feature-based state slices
  • Thunks - Async action creators

🌐 API Services

  • BaseServices - Common API functionality
  • httpClient - Axios configuration and interceptors
  • MovieServices - Example movie API service
  • UserServices - Example user API service

🛠️ Configuration

Environment Variables

Create a .env file in the root directory:

API_BASE_URL=https://your-api-url.com
API_KEY=your-api-key

Customization

  1. App Name & Bundle ID: Update in app.json
  2. Colors: Modify src/Constants/Colors.ts
  3. Fonts: Update src/Constants/Fonts.ts
  4. Languages: Add translations in src/I18n/Languages/

📦 Key Dependencies

Core

  • React Native 0.75.5
  • TypeScript
  • React 18.3.1

Navigation

  • @react-navigation/native
  • @react-navigation/stack
  • @react-navigation/bottom-tabs

State Management

  • @reduxjs/toolkit
  • react-redux

UI & Animation

  • react-native-animatable
  • react-native-fast-image
  • react-native-gesture-handler
  • react-native-safe-area-context
  • react-native-screens

Utilities

  • axios
  • i18next
  • react-i18next
  • @react-native-async-storage/async-storage
  • lodash

🤝 Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

👨‍💻 Author

Thang Paisen

🙏 Acknowledgments

  • React Native team for the amazing framework
  • React Navigation team for the navigation solution
  • Redux Toolkit team for simplified state management

If this template helped you, please give it a star!