Convert numbers to standard numeral forms.
npm install numerals!Node.js CI

Convert numbers to their form in a numeral system.
Currently only implements the roman numerals system converter.
See also: https://en.wikipedia.org/wiki/List_of_numeral_systems
- Install the package
``bash`
npm i numerals
- Use the package
`javascript
import { Language, NumeralForm, convertNumberToNumeralForm } from 'numerals';
let x = convertNumberToNumeralForm(8, NumeralForm.Roman, Language.English);
// Outputs VIII
console.log(x);
`
- Get the web component
`bash`
wget https://neig.es/numerals/script/numerals-ui.js
- Use the web component
`html``