Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laansdole/expo-wind-boilerplate
A template for Expo (React Native) + NativeWind (Tailwindcss)
https://github.com/laansdole/expo-wind-boilerplate
expo nativewind-reactnative
Last synced: 3 days ago
JSON representation
A template for Expo (React Native) + NativeWind (Tailwindcss)
- Host: GitHub
- URL: https://github.com/laansdole/expo-wind-boilerplate
- Owner: LaansDole
- Created: 2024-02-28T03:32:16.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-03-07T08:00:05.000Z (8 months ago)
- Last Synced: 2024-11-11T17:06:23.330Z (3 days ago)
- Topics: expo, nativewind-reactnative
- Language: JavaScript
- Homepage: https://docs.expo.dev/tutorial/introduction/
- Size: 1.51 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Pre-requisite
- You should have `Expo Go` application on your mobile device. It is available in both Google Play Store and App Store.
- ***Optional but highly recommended:*** Download and Install [AirDroid Cast](https://www.airdroid.com/ad/airdroid-cast/) on both your mobile device and PC/Laptop Device.## Local Build
- Clone the project to your local machine
- Install `node_modules` package
```bash
yarn install
yarn global add eas-cli
```
### In the project directory, you can run:
- ***For first run:***
```bash
npm start
```
From here, if you cannot run `Expo Go` by scanning the QR Code, `Ctrl + C` and run `npm run tunnel`.
- Runs the app in the development mode. Open it in the Expo app on your phone to view it.
```bash
npm start
```
- Starts the dev server and tunnels the connection so you can access it anywhere, especially for WSL2.
```bash
npm run tunnel
```
- Runs the app on an Android device or emulator.
```bash
npm run android
```
- Runs the app on an iOS simulator.
```bash
npm run ios
```
- Runs the app in the web browser.
```bash
npm run web
```### Tools and Technologies
- [Expo](https://docs.expo.dev/)
- [NativeWind](https://www.nativewind.dev/quick-starts/expo)
#### ***For more information, see [Packages and Dependencies](./package.json)***