A Next.js application for splitting expenses between people.
- Add multiple people with their expense amounts
- Calculate payment chains to settle debts
- Fully client-side SPA with no server dependencies
First, install the dependencies:
npm installThen, run the development server:
npm run devOpen http://localhost:3000 with your browser to see the result.
To build the application for production:
npm run buildnpm run dev- Start development servernpm run build- Build for productionnpm run start- Start production servernpm run lint- Run ESLint