1.0.0 • Published 7 years ago
blox-random v1.0.0
\<blox-random>
Generates a random string or number of a specified length
Install the Polymer-CLI
First, make sure you have the Polymer CLI and npm (packaged with Node.js) installed. Run npm install to install your element's dependencies, then run polymer serve to serve your element locally.
Install blox-randomt
$ npm install blox-randomViewing Your Element
$ polymer serveRunning Tests
$ polymer testImport
$ import 'blox-random';Basic Use
<blox-random
length="20"
type="number"
result="{{error}}">
</blox-random>Javascript Generate Number
<blox-random id="bloxRandom"></blox-random>
<script>
this.$.bloxRandom.generateNumber(10)
.then((num) => {
// Do Something
})
.catch((err) => {
// Do Something
})
</script>Javascript Generate String
<blox-random id="bloxRandom"></blox-random>
<script>
this.$.bloxRandom.generateString(10)
.then((str) => {
// Do Something
})
.catch((err) => {
// Do Something
})
</script>1.0.0
7 years ago