A comprehensive Escape from Tarkov progress tracker built with Nuxt 4, featuring team collaboration, dual game mode support (PvP/PvE), and real-time synchronization via Supabase.
- Dual Game Mode Support: Track progress separately for PvP and PvE modes
- Team Collaboration: Share progress with teammates in real-time
- Task Tracking: Monitor quest completions and objectives
- Hideout Progress: Track module upgrades and parts
- Player Level Progress: Monitor leveling across different factions
- Real-time Sync: Automatic synchronization via Supabase
- Multi-language Support: Available in English, German, Spanish, French, Russian, and Ukrainian
- Framework: Nuxt 4 (SPA mode)
- UI: Vuetify with Material Design components
- Styling: Tailwind CSS v4
- State Management: Pinia with three-store architecture
- Backend: Supabase (authentication, database, real-time)
- API: Nuxt server-side proxy to tarkov.dev GraphQL API
- Deployment: Cloudflare Pages
Install dependencies:
npm installCreate a .env file with the following variables:
VITE_SUPABASE_URL=your_supabase_project_url
VITE_SUPABASE_ANON_KEY=your_supabase_anonymous_keyStart the development server:
npm run devThe application will be available at http://localhost:3000.
# Lint code
npx eslint .
# Run tests
npx vitestBuild for production:
npm run buildPreview production build locally:
npm run previewapp/- Main application source directoryapp/features/- Feature-specific components organized by domainapp/components/- Global/shared UI componentsapp/stores/- Pinia stores for state managementapp/composables/- Reusable composition functionsapp/pages/- File-based routingapp/server/api/- Nuxt server routes for API proxyingdocs/- Project documentation and migration guides
For detailed development guidelines, architecture information, and migration progress, see the files in the docs/ directory.
This project is licensed under the MIT License.