Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saddamarbaa/favorite-places-app-reactnative-typescript
==> Building Favorite Places App: Discover, capture, and organize your favorite spots. Powered by React Native, TypeScript, Expo, and React Navigation, with an easy and enjoyable user experience.
https://github.com/saddamarbaa/favorite-places-app-reactnative-typescript
expo google-maps native-devices-features react-native reactjs reactnavigation typescript
Last synced: 16 days ago
JSON representation
==> Building Favorite Places App: Discover, capture, and organize your favorite spots. Powered by React Native, TypeScript, Expo, and React Navigation, with an easy and enjoyable user experience.
- Host: GitHub
- URL: https://github.com/saddamarbaa/favorite-places-app-reactnative-typescript
- Owner: saddamarbaa
- License: mit
- Created: 2023-06-21T14:11:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-06-30T08:23:06.000Z (over 1 year ago)
- Last Synced: 2024-10-02T16:20:51.226Z (about 1 month ago)
- Topics: expo, google-maps, native-devices-features, react-native, reactjs, reactnavigation, typescript
- Language: TypeScript
- Homepage:
- Size: 171 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TypeScript Example
```sh
npx create-react-native-app -t with-typescript
```TypeScript is a superset of JavaScript which gives you static types and powerful tooling in Visual Studio Code including autocompletion and useful inline warnings for type errors.
## 🚀 How to use
#### Creating a new project
- Install the CLI: `npm i -g expo-cli`
- Create a project: `npx create-react-native-app -t with-typescript`
- `cd` into the project### Adding TypeScript to existing projects
- Create a blank TypeScript config: `touch tsconfig.json`
- Run `yarn start` or `npm run start` to automatically configure TypeScript
- Rename files to TypeScript, `.tsx` for React components and `.ts` for plain typescript files> 💡 You can disable the TypeScript setup in Expo CLI with the environment variable `EXPO_NO_TYPESCRIPT_SETUP=1 expo start`
## 📝 Notes
- [Expo TypeScript guide](https://docs.expo.dev/versions/latest/guides/typescript/)