Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/autumnchris/roman-numeral-converter
A JavaScript app that takes a given standard Arabic number and outputs its Roman numeral form.
https://github.com/autumnchris/roman-numeral-converter
babel css freecodecamp html5 javascript roman-numeral-converter sass scss vanilla-javascript vanilla-js vanillajs webpack
Last synced: 2 days ago
JSON representation
A JavaScript app that takes a given standard Arabic number and outputs its Roman numeral form.
- Host: GitHub
- URL: https://github.com/autumnchris/roman-numeral-converter
- Owner: autumnchris
- Created: 2017-07-13T07:44:14.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2025-02-17T01:21:05.000Z (4 days ago)
- Last Synced: 2025-02-17T02:26:03.575Z (4 days ago)
- Topics: babel, css, freecodecamp, html5, javascript, roman-numeral-converter, sass, scss, vanilla-javascript, vanilla-js, vanillajs, webpack
- Language: JavaScript
- Homepage: https://autumnchris.github.io/roman-numeral-converter
- Size: 126 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Roman Numeral Converter
A JavaScript app that takes a given standard Arabic number and outputs its Roman numeral form.
Inspired by [my solution](https://github.com/autumnchris/freecodecamp-algorithms/blob/main/javascript-algorithms-and-data-structures-projects/roman-numeral-converter.js) to the [Roman Numeral Converter algorithm](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/javascript-algorithms-and-data-structures-projects/roman-numeral-converter) as part of the curriculum for the [Legacy JavaScript Algorithms and Data Structures Certification](https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures) on [freeCodeCamp](https://www.freecodecamp.org).
---
## Built With
* Vanilla JS
* JavaScript
* [Sass](http://sass-lang.com)
* CSS3
* HTML5
* [Node.js](https://nodejs.org/en)
* [Webpack](https://webpack.js.org)
* [Babel](https://babeljs.io)
* [Normalize.css](https://necolas.github.io/normalize.css)
* [Google Fonts](https://fonts.google.com)
* [Font Awesome](https://fontawesome.com)## Demo
View project demo at [https://autumnchris.github.io/roman-numeral-converter](https://autumnchris.github.io/roman-numeral-converter).
## Instructions
After forking and cloning, navigate to the repository in your command line and install the NPM packages:
```
npm install
```Run the following script in your command line to run the application:
```
npm start
```Once the server is running, go to `http://localhost:8080` in your browser.
Before committing any changes, run the following script to update your static files for production:
```
npm run build
```