Skip to content

aswathkk/js-randstr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

js-randstr

Simple library to generate random strings

Installation

using npm

npm install js-randstr

using bower

bower install js-randstr

Usage

For nodejs

var randstr = require('js-randstr');

// Generate random string of length 6
randstr(6);

// Generate random string with specified charset
randstr(8, 'abcd');

For browser

<script src="bower_components/js-randstr/lib/randstr.js"></script>
<script>
// Generate random string of length 6
randstr(6);

// Generate random string with specified charset
randstr(8, 'abcd');
</script>

Tests

# install dev dependencies
npm install

# run tests
npm test