Library Settings Get Help
Stacktora
Stacktora / Vault / Mobile
Mobile

Mobile recipes

17 admin-reviewed Mobile starting points in the Vault, each installable with one command. Browse every category →

Expo + Node + Postgres + Redis: Mobile Social Feed App

A real Expo mobile client generated alongside the backend, not just an API serving unspecified mobile traffic — feed posts and likes in Postgres, Redis for feed caching. Point-and-run on a physical device via Expo Go from the first `stacktora sync`.

by @ops

Node.js 24 PostgreSQLRedis

Expo + Node + Postgres + Redis: Mobile Team Chat App

A real Expo client for team messaging, Redis handling live message delivery state — built to run on a device via Expo Go immediately, not just an API a mobile team would eventually wire a client to themselves.

by @ops

Node.js 24 PostgreSQLRedis

Expo + Node + Postgres: Mobile Event Check-in & Ticketing App

A real Expo client for scanning/validating tickets at an event door — pairs with the Event Registration & Ticketing backend, this time with an actual door-staff app instead of assuming one gets built later.

by @ops

Node.js 24 PostgreSQL

Expo + Python + Postgres + pgvector: Mobile AI Assistant App

A real Expo client talking to an LLM-backed Python API with pgvector for context retrieval — a real mobile AI-chat client, not just the backend other recipes in this catalog provide for web clients.

by @ops

Python 3.12 PostgreSQLpgvector

Flutter + Go + Postgres + Redis: Mobile Delivery Driver App

A real Flutter client for delivery drivers — order assignment and status updates — Redis for the live location/status state a delivery app needs fast.

by @ops

Go 1.26 PostgreSQLRedis

Flutter + Java + Postgres + Redis: Mobile Patient Portal App

A real Flutter client for patients — appointments and records access — paired with the Spring Boot healthcare-oriented backend pattern used elsewhere in the catalog.

by @ops

Java (Spring) 21 PostgreSQLRedis

Flutter + Python + Postgres: Mobile Personal Finance Tracker App

A real Flutter client backed by Python for expense tracking and budget categorization on the go — the mobile-client counterpart to the Personal Finance Budgeting backend, this time with an actual app to install on a phone.

by @ops

Python 3.12 PostgreSQL

Flutter + Ruby + Postgres + Redis: Mobile Booking & Scheduling App

A real Flutter client for browsing availability and booking appointments — Ruby backend handling the actual slot logic, Redis preventing double-booking under concurrent taps.

by @ops

Ruby 3.3 PostgreSQLRedis

Geofencing & Location Tracking Backend

Location updates, geofence definitions, and enter/exit event detection in Postgres, with Redis for the last-known-position lookups that need to be fast. The backend shape behind delivery tracking, ride-hailing, or any location-aware mobile feature.

by @ops

Node.js 24 PostgreSQLRedis

Mobile Backend-as-a-Service

Postgres + Redis backend shaped for mobile clients specifically: auth, sync-friendly data access, and Redis ready for push-notification queuing. A real starting point instead of reaching for a generic web API stack and bolting mobile concerns on after.

by @ops

Node.js 24 PostgreSQLRedis

Node + Postgres + Redis: Mobile App Version Gating & Force-Update Backend

Minimum supported app version checks and force-update logic — distinct from Push Device Registry and Mobile BaaS: this is specifically the 'your app version is too old, please update' gate every mobile team eventually needs and usually builds ad hoc.

by @ops

Node.js 24 PostgreSQLRedis

Push Notification Device Registry

Device token registration, platform (APNs/FCM) tracking, and subscription/topic state — the piece that has to exist correctly before the Notification Dispatch recipe's sends actually reach a device. Distinct from both: dispatch sends, this tracks who can receive.

by @ops

Node.js 24 PostgreSQLRedis

Python + Expo + Postgres + Redis: Mobile App Backend

A backend built specifically for a mobile app: Python API paired with a real Expo (React Native) app scaffold, Postgres for user/app data, and Redis for sessions, push-token caching, and rate limiting.

by @ops

Python 3.12 PostgreSQLRedis

React Native + Go + Postgres + Redis: Mobile Fitness Tracker App

A real React Native client plus a Go backend for workout logging and progress tracking — distinct from the Expo recipes: bare React Native for teams who want native module access Expo's managed workflow doesn't offer.

by @ops

Go 1.26 PostgreSQLRedis

React Native + Go + Postgres: Mobile Barcode Inventory Scanner App

A real React Native client for warehouse/retail staff scanning stock — bare RN chosen specifically because barcode-scanning native modules need it, not Expo's managed workflow.

by @ops

Go 1.26 PostgreSQL

React Native + Java + Postgres: Mobile Field Service Technician App

A real React Native client for field technicians — work order details and status updates from the field — paired with the Spring Boot backend pattern used elsewhere in the catalog's field-service recipe.

by @ops

Java (Spring) 21 PostgreSQL

React Native + Node + Postgres + Redis: Mobile Marketplace App

A real React Native client for browsing and listing items — the mobile-client counterpart to the web-facing Marketplace recipe, for teams whose buyers and sellers are primarily on phones.

by @ops

Node.js 24 PostgreSQLRedis