expo-examples

Adapt or scaffold Expo's official with-* integration examples into React Native apps.

Updated Sep 8, 2026
One-click install
npx skills add https://github.com/bmiit145/leadBee --skill expo-examples-bmiit145
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: expo-examples
Source: https://github.com/bmiit145/leadBee/tree/main/mobile/.agents/skills/expo-examples
Command: npx skills add https://github.com/bmiit145/leadBee --skill expo-examples-bmiit145

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Integrating a third-party library or service into an Expo app often means guessing at the right dependency versions, config plugins, and wiring. This Skill gives you the canonical, version-matched integration pattern from Expo's official examples repo (~70 with-* projects like Stripe, Clerk, Supabase, maps, SQLite, and Skia) so you adapt a maintained reference instead of hand-rolling the setup. ## Core Features & Use Cases - Find the right example: Map a need (payments, auth, maps) to an example name, verify it against the live repo, and check meta.json for renames or deprecations before recommending anything. - Two working modes: Study an example as reference and port its pattern into an existing app, or scaffold a greenfield project directly with npx create-expo --example <name>. - Non-destructive adaptation: Add only missing dependencies via npx expo install, merge config plugins without overwriting existing app.json setup, and recreate env vars from the example's placeholder shape. - Use Case: You need Stripe payments in an existing Expo app. The Skill pulls with-stripe into a scratch directory, reads its server routes, client provider, and config, then ports only what your project lacks. ## Quick Start Ask the assistant to find the official Expo example for the library you want to integrate and adapt its pattern into your current project.

Frequently Asked Questions about expo-examples

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I integrate a third-party library into an Expo app?▼

Find the matching with-* example in the expo/examples repo, read its package.json, app.json, and integration code, then port the pattern into your project. Add missing dependencies with npx expo install so versions match your SDK rather than copying pinned versions.

How do I scaffold a new Expo project from an example?▼

Run npx create-expo --example <name> with any example from the expo/examples repo, such as npx create-expo --example with-stripe. The bun equivalent is bun create expo --example <name>.

What Expo examples exist for Stripe, Clerk, or Supabase?▼

The expo/examples repo contains roughly 70 with-* examples including with-stripe, with-clerk, with-legend-state-supabase, with-maps, with-sqlite, and with-skia. Confirm the live list with gh api repos/expo/examples/contents since the catalog changes over time.

Can I copy dependency versions directly from an Expo example?▼

No. Examples track the latest SDK, so their pinned versions may not match your project. Add only the missing packages with npx expo install <pkg>, which resolves the correct version for your SDK.

What if an Expo example was renamed or deprecated?▼

Check meta.json in the expo/examples repo before recommending an example. Its aliases map points renamed examples to their destination, and its deprecated map explains dead examples with a message pointing to the modern path.