simplify-fractions/README.md

515 B

Simplify fractions

Simplifies a fraction of integers by dividing both operands by their greatest common divisor.

Development

Requirements

Setting up

# Install dependencies (only needed once)
$> npm ci

Building

# 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