IsaacCheng9 / fairsplit

A web application to split bills and track shared expenses in a group, with a transaction minimisation algorithm. Developed with Node and React.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FairSplit

code style: prettier test

A bill-splitting application to track shared expenses in a group, developed with Node and React.

Explanation of Transaction Minimisation Algorithm

We implemented a greedy algorithm to minimise the number of transactions required to settle the debts between all members of a group when the user toggles 'Smart Split'. The algorithm runs in O(n log n), where n is the number of users – this means that it scales well with the number of users.

A simple example of this algorithm is shown below. In this example, Alice owes Bob £10 and Bob owes Charlie £10 for a total of two transactions. The algorithm will suggest that Alice pays Charlie £10 directly, meaning only one transaction is required to settle the debts.

FairSplit - Minimising Transactions@2x Simple

This may seem like a trivial problem to solve, but it becomes more complex as the number of users increases. The following diagram shows a more complex example when there are six users with six transactions between them. This is reduced to only four transactions by the algorithm.

FairSplit - Minimising Transactions@2x

Screenshots

Screenshot 2022-09-30 at 00 23 22 Screenshot 2022-09-30 at 00 23 52 Screenshot 2022-09-30 at 00 27 59 Screenshot 2022-09-30 at 00 29 59

Installation and Usage

Setting up the MongoDB Database

  1. Create a file in the server directory with the name: .env
  2. Open the file in a text editor (such as Notepad or TextEdit).
  3. Add the following line to the file, replacing <uri> with the URI of your MongoDB database:
MONGODB_URI="<uri>"
  1. Save the file.

Running the Server

  1. Open a terminal window.
  2. Ensure that you're in the root directory: fairsplit
  3. Navigate to the server directory: cd server
  4. Install dependencies: npm install
  5. Run the server: node app

Running the Client

  1. Open a new terminal window (separate to the previous one).
  2. Ensure that you're in the root directory: fairsplit
  3. Navigate to the server directory: cd client
  4. Install dependencies: npm install
  5. Run the client: npm start
  6. Browse to the URL provided in the terminal window.

Running Tests

Running Tests on the Server

  1. Open a terminal window.
  2. Ensure that you're in the root directory: fairsplit
  3. Navigate to the server directory: cd server
  4. Install dependencies: npm install
  5. Run the unit tests: npm test

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

For more information, please see the Contributing Guide.

About

A web application to split bills and track shared expenses in a group, with a transaction minimisation algorithm. Developed with Node and React.


Languages

Language:JavaScript 81.2%Language:CSS 16.6%Language:HTML 2.2%