https://github.com/baradusov/pochem
Simple currency converter
https://github.com/baradusov/pochem
currency currency-converter currency-exchange-rates finance react-native
Last synced: 5 months ago
JSON representation
Simple currency converter
- Host: GitHub
- URL: https://github.com/baradusov/pochem
- Owner: baradusov
- License: mit
- Created: 2026-01-20T21:03:15.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-02-04T04:54:21.000Z (5 months ago)
- Last Synced: 2026-02-04T15:49:51.878Z (5 months ago)
- Topics: currency, currency-converter, currency-exchange-rates, finance, react-native
- Language: TypeScript
- Homepage: https://apps.apple.com/us/app/%D0%BF%D0%BE%D1%87%D1%91%D0%BC/id6758133115
- Size: 896 KB
- Stars: 2
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# почём (pochem)
Simple currency converter
| | | |
|---------------------------------------------|---------------------------------------------|---------------------------------------------|
|
|
|
|
## Getting Started
```bash
# Install dependencies
npm install
# Start Expo
npm start
```
After starting:
- Press `i` for iOS simulator
- Press `a` for Android emulator
- Scan QR code with Expo Go on your phone
## Native Build
```bash
# iOS simulator
npm run ios
# iOS on real device (dev)
npm run ios -- --device
# iOS on real device (release, works without dev server)
npm run ios -- --configuration Release --device
# Android
npm run android
```
If native folders are missing:
```bash
npm run prebuild
```
## Tech Stack
- Expo 54
- React Native 0.81
- MobX
- TypeScript
## Architecture
```
┌─────────────────────────────────────────────────────────┐
│ UI Layer (screens/, components/) │
│ - Screens and UI components │
│ - Only renders, no business logic │
│ - Calls store methods, observes state │
├─────────────────────────────────────────────────────────┤
│ Adapters (hooks/, controllers/) │
│ - Thin adapters between UI framework and stores │
│ - useAuth(), useProfile(), etc. │
├─────────────────────────────────────────────────────────┤
│ Core (core/) │
│ - Business logic lives here │
│ - Stores orchestrate everything │
│ - MUST be framework-agnostic │
│ - Could be extracted to CLI/API without changes │
├─────────────────────────────────────────────────────────┤
│ Infrastructure (infrastructure/) │
│ - Implements ports (interfaces) from core │
│ - Database adapters, external API adapters │
│ - Can be swapped without touching business logic │
└─────────────────────────────────────────────────────────┘
```
See [CLAUDE.md](./CLAUDE.md) for architecture details.
## Versioning
This project uses [CalVer](https://calver.org/) (`YY.MM.patch`). See [CHANGELOG.md](./CHANGELOG.md) for release history.
## Changelog
See [CHANGELOG.md](./CHANGELOG.md).
## Contributing
See [CONTRIBUTING.md](./CONTRIBUTING.md).
## Releasing
See [RELEASING.md](./RELEASING.md).