https://github.com/cryptoalgorithm/react-spending-calculator-demo
A demo web app made in React to demonstrate the immense benefits of reactive frontend UI frameworks
https://github.com/cryptoalgorithm/react-spending-calculator-demo
demo react
Last synced: 3 months ago
JSON representation
A demo web app made in React to demonstrate the immense benefits of reactive frontend UI frameworks
- Host: GitHub
- URL: https://github.com/cryptoalgorithm/react-spending-calculator-demo
- Owner: cryptoAlgorithm
- Created: 2023-03-17T10:08:39.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-17T10:40:26.000Z (about 2 years ago)
- Last Synced: 2025-01-13T05:26:05.289Z (4 months ago)
- Topics: demo, react
- Language: TypeScript
- Homepage:
- Size: 342 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spending Calculator
A demo web app made in React to demonstrate the immense
benefits of reactive frontend UI frameworks (such as React).## Running the app
To run the app, ensure need to have Yarn and Node.js installed
on your machine.Installing Yarn
> You'll need to have NodeJS and NPM installed first.
```bash
npm i -g yarn
```_Why use Yarn over NPM?_
* Faster installs
* More efficient caches
* Better dependency managementThen, run the following commands:
```bash
yarn # Install dependencies
yarn start # Start development server
```