Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrtz-j/felizreactnative
Following Expo's Get started using F# and Fable.
https://github.com/mrtz-j/felizreactnative
Last synced: 3 days ago
JSON representation
Following Expo's Get started using F# and Fable.
- Host: GitHub
- URL: https://github.com/mrtz-j/felizreactnative
- Owner: mrtz-j
- License: mit
- Created: 2023-07-20T21:32:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-05T02:04:50.000Z (4 months ago)
- Last Synced: 2024-11-22T05:14:54.575Z (2 months ago)
- Language: F#
- Size: 919 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feliz React-Native
A Test app using F# with Fable and React-Native with Expo. Following this [guide](https://docs.expo.dev/tutorial/introduction/)
## How to run
### Install Fable
To install Fable run the following
```bash
dotnet tool restore
```### Install npm-packages
Run
```bash
pnpm install
```### Actually running it
1. Compile the F# to Javascript and watch for changes
```bash
dotnet fable watch ./src -o ./out
```
or from our `package.json`
```bash
pnpm start watch
```2. Run the app (ios, android or web)
```bash
pnpm run web
```3. Enjoy 🩹
## Acknowledgements