https://github.com/chicio/react-native-typescript-existing-app
An example project created for my blog post "React Native + Typescript :purple_heart:, love at first sight. Setup in an existing app."
https://github.com/chicio/react-native-typescript-existing-app
mobile mobile-app native react react-native typescript
Last synced: 3 months ago
JSON representation
An example project created for my blog post "React Native + Typescript :purple_heart:, love at first sight. Setup in an existing app."
- Host: GitHub
- URL: https://github.com/chicio/react-native-typescript-existing-app
- Owner: chicio
- License: mit
- Created: 2018-05-23T16:45:55.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-12-28T08:38:57.000Z (over 4 years ago)
- Last Synced: 2025-04-23T15:21:28.342Z (about 1 year ago)
- Topics: mobile, mobile-app, native, react, react-native, typescript
- Language: TypeScript
- Homepage: https://www.fabrizioduroni.it/blog/
- Size: 15.4 MB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# React Native Typescript Existing App
[](https://raw.githubusercontent.com/chicio/React-Native-Typescript-Existing-App/master/LICENSE.md)
An example project in which I show how it is possible to use React Native + TypeScript in an existing app.. This is a
project for my blog post [React Native + Typescript :purple_heart:, love at first sight. Setup in an existing app.](https://www.fabrizioduroni.it/2018/07/04/react-native-typescript-existing-app/ "React Native + Typescript :purple_heart:, love at first sight. Setup in an existing app")
### Description
This repository contains an example of an app that contains native code and React Native + TypeScript code. This is a
quote from the post:
> ......What does it means? It means that TypeScript is basically *"Javascript on steroid"*: it provides optional,
static type checking at compile time. Since it is a superset of JavaScript, all JavaScript code is valid TypeScript code.
TypeScript is useful if you are a developer that comes from other strongly typed language and with a strong knowledge
of Object Oriented programming because it let you reuse a lot of the programming technique you already know.
React Native officially support Javascript. So how can we setup React Native + Typescript? In this post we will see
how to integrate React Native and Typescript in an existing app and we will add a new screen done in React Native
where we will show the photo of the day that we will read from the Nasa open API.......
Click [here](https://www.fabrizioduroni.it/2018/07/04/react-native-typescript-existing-app.html "React Native + Typescript :purple_heart:, love at first sight. Setup in an existing app") to read the post.