simplify-fractions/README.md

23 lines
515 B
Markdown
Raw Normal View History

2020-03-14 11:53:03 +01:00
# Simplify fractions
Simplifies a fraction of integers by dividing both operands by their greatest common divisor.
2021-03-26 01:48:55 +01:00
## Development
### Requirements
* [npm](https://www.npmjs.com/)
### Setting up
```shell script
# Install dependencies (only needed once)
$> npm ci
```
### Building
```shell script
# Build the tool in `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the tool in `dist/` for deployment
$> npm run deploy
```