Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```