https://github.com/himynameisdave/downpayment
🏡 A small app + micro-service for calculating the minimum mortgage downpayment in Canada.
https://github.com/himynameisdave/downpayment
calculator downpayment lambda mortgage-calculator svelte-app
Last synced: 4 months ago
JSON representation
🏡 A small app + micro-service for calculating the minimum mortgage downpayment in Canada.
- Host: GitHub
- URL: https://github.com/himynameisdave/downpayment
- Owner: himynameisdave
- License: mit
- Created: 2020-05-21T22:44:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T01:31:10.000Z (over 2 years ago)
- Last Synced: 2024-12-23T21:58:39.768Z (4 months ago)
- Topics: calculator, downpayment, lambda, mortgage-calculator, svelte-app
- Language: Svelte
- Homepage: https://downpaymentcalculator.ca
- Size: 164 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
downpayment calculator
🏡 A tiny app for calculating the minimum mortgage downpayment in Canada.
---
This is a simple [Svelte](https://svelte.dev/)-based web app for determining the legal minimum downpayment for mortgages in Canada. It is not meant to be super comprehensive, for example it doesn't allow you to calculate interest payments etc.
## In action
You can see it in action over at [**downpaymentcalculator.ca**](https://downpaymentcalculator.ca).
**Query param**
If you want to quickly find out the minimum downpayment calculation, you can include a query string parameter in the URL. Here's an example:
```
https://downpaymentcalculator.ca?asking=450000
```This allows you to also bookmark certain price URLs if you want to return to them in the future.
## Developing
First clone the repo, then install the dependencies with your JS package manager of choice:
```bash
git clone [email protected]:himynameisdave/downpayment.gitcd ./downpayment
yarn install # or `npm install`
```Then run this command to start the development server:
```bash
yarn run dev # or `npm run dev`
```The app will then be running at [`localhost:5000`](http://localhost:5000).
## Contributing
Issues and pull requests are quite welcome!
## Project Goals
It would be cool to add a simple API for this, it would also be cool to respond with some JSON if you `curl` the endpoint.
---
_Created by [Dave](https://himynameisdave.com)._