https://github.com/tyrone-sudeium/reactipug
Hello /dev/world!
https://github.com/tyrone-sudeium/reactipug
Last synced: 6 months ago
JSON representation
Hello /dev/world!
- Host: GitHub
- URL: https://github.com/tyrone-sudeium/reactipug
- Owner: tyrone-sudeium
- License: mit
- Created: 2017-08-22T03:12:32.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-28T03:52:17.000Z (about 8 years ago)
- Last Synced: 2025-02-14T23:46:39.251Z (8 months ago)
- Language: TypeScript
- Size: 934 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Reactipug
Reactipug is the greatest app the world never knew it needed.
Featured at /dev/world/2017.

# Developing
1. Install [Visual Studio Code.](https://code.visualstudio.com)
2. Install Node/NPM. We use Node v8.4.0. Use something like NVM.
3. Install Yarn: `brew install yarn`
4. Install [Xcode.](https://developer.apple.com) We use v8.3.3.
5. Install JavaScript dependencies: `yarn`
6. Run the React Native packager: `yarn start`
7. Open the native app code in Xcode: `open ios/Reactipug.xcodeproj`
8. Click on Build & Run. It's the play button in the top-right.You can now make changes to the TypeScript code and it'll automatically
recompile. To see your changes, press CMD+R in the iOS Simulator. Any changes
in Objective-C will require you to rebuild in Xcode.## Maintenance
### Clearing React Native Caches
Run this command to start the packager with clean caches:
```sh
node node_modules/react-native/local-cli/cli.js start -- --resetCache
```You can then close this packager and start everything again with `yarn start`.