https://github.com/robinbuschmann/roman-numeral-converter
https://github.com/robinbuschmann/roman-numeral-converter
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/robinbuschmann/roman-numeral-converter
- Owner: RobinBuschmann
- Created: 2018-11-03T15:36:32.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-03T15:37:08.000Z (over 7 years ago)
- Last Synced: 2025-01-30T17:34:50.482Z (over 1 year ago)
- Language: TypeScript
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# roman-numeral-converter
Converts integer numbers to roman numerals
## Why javascript/typescript?
Because it is my second big love. You can easily write less verbose declarative and also
imperative code. No boilerplate. With typescript on top one can add the perfect portion
of type safety - You don't need to annotate everything with types, since typescript is
very strong in inferring types as well ❤️
## Installation
**Precondition**: node.js must be installed
```bash
npm install
```
## Testing
```bash
npm test
```
## Build
```bash
npm run build
```