This personal finance application allows users to track their income, transactions, and spending habits in an intuitive and visually appealing UI. Users can categorize their expenses, link transactions to specific accounts, and view their financial data on a dashboard that makes it easy to understand their spending patterns. The app also offers the ability to filter spending by date range and category, making it simple for users to gain insights into their financial habits. Additionally, importing transactions via CSV is a breeze, adding extra convenience for those who want to quickly get their data into the system.
The target audience is anyone looking to get better insights into their spending, whether they’re budgeting, saving, or just trying to understand their financial habits.
One of the biggest technical challenges was finding a project structure that would allow for future scalability. While the project was built using the latest version of Next.js, I decided not to jump into the “new” features like server actions and instead went with React Query. This choice made caching and cache invalidation much easier when working with data, and it gave me more control over how I fetched and managed data.
Another obstacle I faced was integrating HonoJS as the backend, instead of using the default Next.js route handler setup. I chose HonoJS because of its ability to offer front-to-back type safety via RPC. Although I anticipated some difficulty with this integration, it turned out to be surprisingly smooth and provided a clean way to organize API endpoints.
The real challenge, however, came with some of the more complicated and nested queries needed to generate user transaction summaries. These queries involved multiple joins and subqueries, which could have become a nightmare. Luckily, Drizzle ORM simplified the relationships and query logic, making this much more manageable.
To ensure strong performance, I relied heavily on React Query for efficient data fetching, caching, and handling of state on the client side. By moving most of the data handling to the client, I was able to avoid potential performance issues that can arise with server-side rendering (SSR), like delayed navigation and loading states. This approach helped deliver a smoother user experience, especially when navigating between pages.
HonoJS also played a key role by offering a lightweight and performant backend with RPC endpoints, which further contributed to faster data handling and reduced server load. While Next.js’s SSR and caching could have been another option for improving performance, focusing on client-side rendering allowed me to optimize for smoother, faster interactions without waiting for the server to process and return data.
The project’s structure, combining Next.js, HonoJS, and React Query, also made it easy to scale the app and add new features. It promoted clear separation of concerns, making the codebase maintainable and allowing for reusability across the application.
The only notable bottleneck I encountered was Neon, the database. While Neon is great for serverless PostgreSQL, handling a larger volume of complex queries could slow things down under heavy load. This is something to keep in mind as the app grows, and optimizing database queries or considering other database solutions might be necessary for scaling further.
One of the biggest lessons I learned during this project was how to structure the application in a way that made it both scalable and easy to navigate. I hadn’t structured a project like this before, but once I got the hang of it, the setup felt intuitive and streamlined. Here’s the approach I took:
This structure helped keep things organized, especially as the app grew. Grouping related files together and having clear separation of concerns made the app easier to maintain and extend.
If I were to build the project again, I’d consider experimenting with server actions in Next.js to compare benchmarks and see if it offers any performance advantages, especially for data handling and mutation.
Looking ahead, there are several exciting features I’d like to add to enhance the app’s functionality and user experience:
These features would significantly enhance the app’s value and bring even more convenience to users as they track their finances and stay within their budget.