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

create-expo-adelowomi-template

v1.1.2

Published

A customizable Expo template with NativeWind and TypeScript - Create via npx create-expo-adelowomi-template

Readme

Create Expo Applab Template

A customizable Expo template with NativeWind (Tailwind CSS) and TypeScript that can be used to quickly bootstrap new React Native projects.

🚀 Quick Start

Create a new Expo app using this template:

npx create-expo-adelowomi-template my-app
cd my-app
npm install
npm start

🌟 What's Included

  • Expo Router - File-based routing for React Native
  • TypeScript - Type safety and better developer experience
  • NativeWind - Tailwind CSS for React Native styling
  • Atomic Design - Well-organized component structure (atoms, molecules, organisms)
  • Context API - Built-in state management examples
  • Custom Hooks - Reusable logic patterns
  • SQLite Database - Local data persistence
  • Notifications - Push notification setup
  • Network Detection - Connection status monitoring
  • Theme Support - Dark/light mode switching

📂 Template Structure

your-app/
├── src/
│   ├── app/
│   │   ├── components/
│   │   │   ├── atoms/          # Basic UI elements
│   │   │   ├── molecules/      # Combined atoms
│   │   │   ├── organisms/      # Complex components
│   │   │   └── primitives/     # Special components
│   │   ├── contexts/           # Global state
│   │   ├── hooks/              # Custom hooks
│   │   ├── screens/            # Screen components
│   │   └── types/              # TypeScript types
│   └── types/                  # Additional types
├── scripts/                    # Build scripts
└── Configuration files...

🔑 Key Features

Context Annotations

The template includes a unique context annotation system for better documentation:

// @context: isConnected - boolean - true if device is connected to internet
// @context: connectionType - string - type of connection (wifi, cellular, etc.)
const NetworkContext = createContext<NetworkContextType>({...});

Automatic Metadata Generation

Context metadata is automatically generated from annotations:

npm start  # Automatically generates context metadata

Component Architecture

  • Atoms: Basic UI elements (buttons, inputs, text)
  • Molecules: Simple combinations of atoms
  • Organisms: Complex, reusable components
  • Primitives: Special-purpose components

📦 Available Scripts

After creating your project:

  • npm start - Start Expo development server
  • npm run android - Run on Android emulator
  • npm run ios - Run on iOS simulator
  • npm run web - Run in web browser

🛠 Development

Prerequisites

  • Node.js 16+
  • npm or yarn
  • Expo CLI
  • iOS Simulator (for iOS development)
  • Android Studio (for Android development)

Getting Started with Development

  1. Create a new project: npx create-expo-adelowomi-template my-app
  2. Navigate to project: cd my-app
  3. Install dependencies: npm install
  4. Start development server: npm start
  5. Open in Expo Go app or simulator

🎨 Customization

Styling

The template uses NativeWind (Tailwind CSS for React Native). Customize styles in:

  • tailwind.config.js - Tailwind configuration
  • src/global.css - Global styles
  • Component files - Inline Tailwind classes

Themes

Built-in theme switching is available through the ThemeContext:

const { isDarkMode, toggleTheme } = useContext(ThemeContext);

Database

SQLite database setup is included with examples in:

  • src/app/database/database.ts - Database configuration
  • src/app/hooks/useDatabase.ts - Database hooks

📱 Platform Support

  • ✅ iOS
  • ✅ Android
  • ✅ Web (limited)

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

📄 License

MIT License - see the LICENSE file for details.

🌈 Attribution & Disclaimer

This template is packaged by Adelowomi based on the APP labs GitHub repository. Adelowomi does not claim to own any of the code in this template. All original code and concepts are credited to APP labs and their contributors.

This template is created and maintained by APP labs, committed to providing high-quality, open-source tools for mobile app development.


Publishing to NPM

To publish this template to npm:

  1. Update version in package.json
  2. Build and test the template
  3. Run npm publish

Users can then create projects with:

npx create-expo-adelowomi-template my-new-app