#Roman Numerals This is an exercise to write a function which accepts a number and returns a Roman Numeral using TDD and functional JavaScript techniques.
Roman numeral calculations were made against roman-numerals.org Roman Numeral calculator.
First Install development dependencies, ensure you have nodejs installed and install the following tools:
Gulp command line utility:
npm install -g gulp
Bower command line utility:
npm install -g bower
Karma command line utility:
npm install -g karma
npm install -g jshint
npm install -g htmlhint
###Ensure node tools and gulp plugins are up to date:
-
npm install -
bower install
-
All source files can be fouond in
/src/app/roman-numeral/ -
To run client interface
gulp serve -
To run unit tests
gulp test