random-hex

Simple utility that generates random hexadecimal colors.

Usage no npm install needed!

<script type="module">
  import randomHex from 'https://cdn.skypack.dev/random-hex';
</script>

README

random-hex

Simple utility that generates random hexadecimal colors.

NPM Version Build Status Code Status

install

npm i -S random-hex

usage

var randomHex = require('random-hex');

randomHex.generate(); // #f92672
randomHex.generate(); // #f060ff

The generate method can be called multiple times and will generate a random hex color each time.

testing

npm test

code coverage

npm run cover

istanbul and coveralls are used to generate a code coverage report.

linting

jshint is used to lint the code.

The code will be linted when running npm test by means of the 'pretest' hook.