Modern web frontend for DownAria media extraction and download flow. Built with Next.js , TypeScript , and Tailwind CSS .
Home
Documentation
Settings
About
Home
Documentation
Settings
About
Feature
Description
π Multi-Platform Support
YouTube, Instagram, Twitter/X, Facebook, TikTok, Pixiv
π― Auto-Detect Platform
URL platform detection on submit
π¦ BFF Runtime Flow
Frontend runtime uses signed /api/web/* gateway routes
π¬ Preview + Download
Preview/stream via /api/web/proxy, file download via /api/web/download
ποΈ Paired Stream Merge
Supports direct pair merge (videoUrl + audioUrl) and YouTube URL mode
π History Refetch
Re-run extraction from history item directly to home
β±οΈ Rate Limit UX
Modal with reset-aware countdown and retry hints
βοΈ Settings Tabs
Basic, Cookies, Storage, Integrations
π§ͺ Experimental Controls
Seasonal effects + custom background controls (blur/zoom/move/sound)
π Docs Hub
Overview, API, FAQ, Changelog pages
π¦ PWA Support
Installable app flow
Component
Technology
Framework
Next.js 16 (App Router, Turbopack)
Language
TypeScript 5
Styling
Tailwind CSS 4
Animation
Framer Motion
i18n
next-intl
Client Storage
IndexedDB + LocalStorage
Icons
Lucide + FontAwesome
Alerts
SweetAlert2
Frontend runtime uses local BFF routes (signed gateway):
POST /api/web/extract
GET /api/web/proxy
GET /api/web/download
POST /api/web/merge
Backend public routes are still available for direct integrations (/api/v1/*), including:
POST /api/v1/extract
GET /api/v1/proxy
GET /api/v1/download
POST /api/v1/merge
GET /api/settings
Open http://localhost:3001.
Command
Description
npm run dev
Run development server (port 3001)
npm run build
Build for production (runs prebuild tasks)
npm run start
Start production server
npm run lint
Run ESLint
npm run test
Run Vitest
π§ Environment Variables
Defined in .env.example.
Variable
Purpose
NEXT_PUBLIC_APP_URL
Frontend origin used by web gateway signature/origin resolution
NEXT_PUBLIC_BASE_URL
Canonical public app URL for metadata and links
NEXT_PUBLIC_API_URL
Backend API URL
WEB_INTERNAL_SHARED_SECRET
Shared secret for signed /api/web/* gateway calls
FEEDBACK_DISCORD_WEBHOOK_URL
Server-side webhook for About feedback API
VERCEL
Deployment/runtime indicator
LOG_LEVEL
Runtime log level
NODE_ENV
App environment
prebuild updates service worker build timestamp.
prebuild copies root CHANGELOG.md into public/Changelog.md for docs changelog page.
Frontend runtime traffic uses /api/web/* BFF routes; /proxy is preview/stream and /download is the dedicated file route.
Environment values are read from both shared config and server route handlers (process.env in src/app/api/**).
This project is frontend runtime; backend service is in sibling project DownAria-API.
GPL-3.0