Archery Garage Mobile App
Cross-platform event management application with location tracking and cloud backend.

A cross-platform mobile app for managing archery events, with live location tracking and a cloud-hosted backend, shipped to both the App Store and Play Store.
Problem #
Archery Garage needed a mobile experience for managing events and letting participants find or track locations in real time, without maintaining two separate native codebases for iOS and Android.
Solution #
The app was built with React Native and Expo for a single cross-platform codebase, backed by a Node.js API deployed on Azure. Live location tracking was implemented using Mapbox, and the full mobile lifecycle — development, testing, and store submission — was managed for both the App Store and Play Store.
function useLiveLocation(eventId: string) {
const [position, setPosition] = useState<Coordinates | null>(null);
useEffect(() => {
const subscription = Location.watchPositionAsync(
{ accuracy: Location.Accuracy.High, timeInterval: 5000 },
(loc) => {
setPosition(loc.coords);
api.updateEventLocation(eventId, loc.coords);
}
);
return () => subscription.remove();
}, [eventId]);
return position;
}Architecture #
The Expo-based React Native client talks to a Node.js backend hosted on Azure, which persists event and location data and exposes it back to participants in real time via Mapbox-rendered maps.
Stack #
| Layer | Choice | Why |
|---|---|---|
| Mobile | React Native + Expo | Single codebase for iOS and Android, faster iteration and store deployment |
| Maps | Mapbox | Live location tracking and rendering |
| Backend | Node.js | API layer for event and location data |
| Hosting | Azure | Cloud deployment for backend services |
Problems solved #
- Built a cross-platform mobile application for event management
- Implemented live location tracking using Mapbox
- Developed backend services and cloud deployment architecture
- Managed complete mobile app lifecycle from development to store deployment
Lessons learned #
Getting a cross-platform app built is only half the job — App Store and Play Store review requirements, provisioning, and release management took real planning and were treated as first-class parts of the project, not an afterthought.
Links #
- App Store: Archery Garage
- Play Store: Archery Garage
Related content
Pasal Business Management Platform
Internal business applications developed for inventory management, appointment systems, and daily operational workflows.
Building Photo Proof of Delivery: Camera to Dashboard, End to End
TIL that the hard part of a photo-proof-of-delivery feature isn't the camera or the upload individually — it's making sure a completed delivery can never end up without its proof attached.
Uploading Images from React Native to a Node.js API
TIL that a multipart upload from React Native needs the file described as an object with uri/name/type, not sent as a raw file:// string — an easy mismatch to miss since it fails silently on some devices.