FinApp Frontend is a modern, intuitive web interface for personal finance management designed specifically for young adults and teenagers. Built with Angular 19 and powered by Bun, this frontend provides a fast, engaging, and accessible digital experience that replaces traditional spreadsheets with a gamified approach to financial management.
Deliver a sleek, responsive web application that makes financial management simple, fast, and attractive, promoting financial education through an intuitive interface and practical features. This frontend serves as the "Duolingo for finance" user interface, focused on building financial awareness with a friendly design and seamless user experience.
- Primary: Young adults (18-25) and teenagers (16-18)
- Digital natives seeking simplicity, speed, and mobility in their financial tools
- Users transitioning to financial independence who prefer visual, interactive experiences
- Modern UI/UX: Clean, intuitive interface optimized for young users
- Lightning Fast: Built with Bun for ultra-fast development and performance
- Responsive Design: Seamless experience across desktop, tablet, and mobile
- Real-time Updates: Live data synchronization with SignalR integration
- Accessibility: Designed with inclusivity and ease of use in mind
- Youth-Focused Design: Interface and language tailored specifically for young users
- Ultra-Fast Performance: Bun runtime provides exceptional speed and efficiency
- Progressive Web App: Mobile-like experience with offline capabilities
- Micro-Interactions: Engaging animations and feedback for better user experience
- Component-Driven: Modular, reusable Angular components for maintainability
- Enhanced User Engagement: Interactive and gamified financial tracking
- Improved Financial Habits: Visual insights promote better spending awareness
- Seamless Experience: Fast loading times and smooth navigation
- Cross-Platform Consistency: Unified experience across all devices
- Educational Integration: Built-in financial tips and guidance without friction
- User Authentication: Login, registration, and profile management
- Dashboard: Real-time financial overview and key metrics
- Transaction Management: Add, edit, and categorize income/expenses (in progress)
- Budget Tracking: Visual budget management and goal setting (in progress)
- Financial Reports: Interactive charts and spending insights (in progress)
- Responsive Design: Mobile-first approach with PWA capabilities
- Real-time Features: Live updates via SignalR integration (in progress)
- Accessibility: WCAG-compliant interface design
- Backend Logic: All business logic handled by the FinApp API
- Direct Database Access: Data management through API endpoints only
- Payment Processing: Financial transactions handled by backend
- Native Mobile Apps: Web-based solution with PWA capabilities
- Framework: Angular 19 with standalone components
- Runtime: Bun (package manager and bundler)
- Styling: Tailwind CSS + Angular Material
- State Management: NgRx for complex state handling
- Charts: Chart.js for financial visualizations
- HTTP Client: Angular HttpClient with interceptors
- Real-time: SignalR client integration
- Testing: Jasmine + Karma + Jest
- PWA: Angular Service Worker
- Build Tool: Angular CLI with Bun integration
- Node.js (latest LTS version)
- Bun runtime
- Git
- FinApp Backend running (for API integration)
Install Bun (if not already installed):
curl -fsSL https://bun.sh/install | bashClone the repository:
git clone https://github.com/AppFin/fin-frontend.git
cd fin-frontendInstall dependencies:
bun installConfigure environment:
- Copy
src/environments/environment.example.tstosrc/environments/environment.ts - Update API endpoints and configuration based on your backend setup
Start development server:
bun start
# or
ng serveBuild for production:
bun run build
# or
ng buildRun tests:
bun test
# or
ng testRun e2e tests:
bun run e2e
# or
ng e2eLint code:
bun run lint
# or
ng lintThe application runs on http://localhost:4200/ with hot module replacement enabled. The development server
automatically reloads when you modify source files.
Generate new components, services, and other Angular schematics:
# Generate a new component
ng generate component components/component-name
# Generate a new service
ng generate service services/service-name
# Generate a new module
ng generate module modules/module-name
# View all available schematics
ng generate --helpThis frontend integrates with the FinApp Backend API. Ensure the backend is running and accessible at the configured endpoint in your environment file.
MIT License - see LICENSE file for details
This README reflects the vision, architecture, and development approach of the FinApp Frontend, providing clear guidance for developers and contributors working on the user interface.