🌐
React Native
reactnative.dev › docs › getting-started-without-a-framework
Get Started Without a Framework · React Native
1 week ago - If you have constraints that are not served well by a Framework, or you prefer to write your own Framework, you can create a React Native app without using a Framework.
Discussions

New application with or without Expo?
Go with expo 100% More on reddit.com
🌐 r/reactnative
53
2
December 24, 2024
I want to learn React Native, should i learn it with or without Expo?
i don't know why so many people recommend to start the hard way you go little by little so you don't get frustrated the easiest way is expo More on reddit.com
🌐 r/reactnative
50
17
July 12, 2024
best tutorial without expo
The official docs are fine - https://reactnative.dev/docs/environment-setup More on reddit.com
🌐 r/reactnative
3
4
March 23, 2021
Using create react native app (Expo) with Microsofts App Center? Possible alternatives?

Unless your app is very basic you'll have to eject at some point. Not much can be done without some sort of native module.

That being said you can probably clone your folder where your project is. Eject, run the initial build app center needs then go back to your original unejected project but don't quote me on that. It would likely cause some problems if you need to eject for another reason later anyway.

Either way it's unavoidable at least once as xcode needs to generate the certs etc for app center to do your builds.

More on reddit.com
🌐 r/reactnative
2
1
August 18, 2015
🌐
Dian Apps
dianapps.com › home › building a react native app without expo: a comprehensive guide
Create a React Native App Without Expo
September 4, 2024 - Unlike Expo, where everything is handled behind the scenes, creating a project without Expo gives you full control over the process. To create a new React Native project, use the React Native CLI: ... Replace MyApp with your desired project name.
🌐
DEV Community
dev.to › shivams136 › create-react-native-app-for-android-ios-and-web-without-expo-48lc
How to create React Native App for Android, iOS and Web without Expo - DEV Community
February 5, 2022 - In this article, we are going to see, how to create a React Native App which can run on Android, iOS and Web Browser. We'll NOT be using Expo in this process.
🌐
Medium
medium.com › @codeductor › multi-tenant-white-label-react-native-app-without-expo-5208977fd7e0
Multi-Tenant white-label React Native app (without Expo)
February 12, 2025 - Built a multi-tenant react native app. > A single codebase that supports multiple brands or tenants. > Each tenant can have unique branding, assets, and configurations. Implemented a dynamic override system. > Easily swap out components, styles, and assets. > Changes are applied without modifying the core codebase.
🌐
Shivlab
shivlab.com › home › create and run react native app without expo – get detailed info
Create and Run React Native App without Expo
March 31, 2025 - Create a React Native app without Expo, set up the development environment, run on emulators, customize the app, and troubleshoot common issues.
🌐
DEV Community
dev.to › lico › react-nativewithout-expo-run-hello-world-app-on-iphone-device-cfi
Running a React Native Hello World App on an iPhone (Without Expo): Troubleshooting Common Issues - DEV Community
January 16, 2025 - I haven't built an iOS app on my laptop, Mac M1 Air, and I will be writing down while I am doing each step. The steps are quite simple. Creating a new React Native project, and then running it on my iPhone device. Create a new React Native project ...
Find elsewhere
🌐
Reddit
reddit.com › r/reactnative › new application with or without expo?
r/reactnative on Reddit: New application with or without Expo?
December 24, 2024 -

Hello

I don't have experience with React and React Native. I will create simple app, connect with my REST API, access to Camera. In feature I will want to create also web app.

Should I use Expo or better create without Expo?

🌐
GitHub
gist.github.com › RealPeha › 64a479afd8655cb19f4382ac03d45d15
React Native setup without Expo, Android Studio and Android Emulator · GitHub
React Native setup without Expo, ... Android Studio and Android Emulator.md · Install Android SDK command line tools only: https://developer.android.com/studio/#command-tools ·...
🌐
Futurememories
futurememories.se › articles › react-native-with-or-without-expo
React Native, with or without Expo?
Generated code can be difficult to understand, and since many React Native developers come from the web world, they often do not have the same understanding of the compilation steps that a native iOS or Android developer might have. There's a risk of ending up in compilation problems that can take days to resolve, and which one simply thinks “should just work”. Hard to explain to clients. Yes and no. If I were to give a recommendation, it would be to start the project with Expo and try your utmost to use the built-in links to native functions that Expo provides.
🌐
Expo Documentation
docs.expo.dev › tutorial › create-your-first-app
Create your first app - Expo Documentation
We'll use create-expo-app to initialize a new Expo app. It is a command line tool to create a new React Native project.
🌐
Medium
adhithiravi.medium.com › building-react-native-apps-expo-or-not-d49770d1f5b8
Building React Native Apps — Expo or not? | by Adhithi Ravichandran | Medium
June 17, 2022 - Expo handles all the native code ... apps from scratch without Expo, based on what I have seen you will need to use a tiny bit of your native mobile coding skills....
🌐
Developers Zone
developers-zone.com › home › pc configuration for react native development › start react native without expo
Start React Native without expo » Developers Zone
April 15, 2022 - In this tutorial, we discuss about React native without expo. If you want to develop a mobile app easily then you can use Expo CLI. Because most of the configuration for building android and ios apps is automatically done by the expo.
🌐
Folkstalk
folkstalk.com › home › 2022 › october
Create-React Native App Without Expo With Code Examples
October 4, 2022 - Create-React Native App Without ... Expo error . without Expo: npx react-native init projectname with expo cli: npm i -g expo-cli expo init AppName Create-React Native App Without Expo....
🌐
Medium
medium.com › reactbrasil › being-free-from-expo-in-react-native-apps-310034a3729
Being free from “expo” in React Native apps | by Francis Batista | React Brasil | Medium
December 3, 2019 - You can read more about that below: ... Basically, we install a react-native-cli and build a blank/tabs project using the command init , such asreact-native-cli init RNwithoutExpo , where RNwithoutExpo is the name of the project we want to create.