惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
罗磊的独立博客
美团技术团队
B
Blog
量子位
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
The GitHub Blog
The GitHub Blog
博客园 - 聂微东
P
Proofpoint News Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
Blog — PlanetScale
Blog — PlanetScale
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
有赞技术团队
有赞技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 1: I Finally Understood What Expo Actually Is (And Wh...
daxxx · 2026-05-19 · via DEV Community

daxxx

What I thought I knew
Honestly, I thought Expo was just "React Native but easier." I had no idea what it was actually doing under the hood. I just ran npx create-expo-app and hoped it worked.

What I actually learned
Expo is not React Native itself — it's a toolchain that sits on top of React Native. The best way I can explain it:

React Native = the engine. Expo = the full car with the steering wheel, seats, and GPS already installed.

When you start a React Native project without Expo, you have to configure Android Studio, Xcode, simulators, native dependencies — before writing a single line of code. Expo handles all of that for you.
The 4 key pieces I learned:

  1. app.json — This file is your app's identity. Your app name, icon, splash screen, permissions, and version number all live here. Expo reads it every time you build.
  2. Metro Bundler — When you run npx expo start, Metro starts up. It takes all your JavaScript files and bundles them into one file the device can run. It also watches for changes and hot-reloads your app instantly — no manual refresh needed.
  3. Expo Go — This is a free app you install on your phone. Instead of building a full APK every time you want to test, your phone connects to Metro over Wi-Fi and runs your code directly. This makes development incredibly fast.
  4. Expo SDK — A collection of pre-built modules for camera, location, notifications, file system, and more. You don't have to write any native Android or iOS code to use them.

One real example
Here's what a basic app.json looks like and what each field means:
json{
"expo": {
"name": "MyFirstApp", // what users see
"slug": "my-first-app", // URL-safe identifier
"version": "1.0.0", // your app version
"icon": "./assets/icon.png", // your app icon
"splash": {
"image": "./assets/splash.png"
},
"android": {
"package": "com.yourname.myfirstapp" // unique ID on Play Store
}
}
}

One thing I still want to explore
The difference between Managed Workflow and Bare Workflow in Expo. From what I understand, Managed = Expo handles the native code, Bare = you get full control. I want to understand exactly when you'd switch from one to the other. That's tomorrow's rabbit hole.