js-randstr

1.0.2 • Public • Published

#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

Readme

Keywords

none

Package Sidebar

Install

npm i js-randstr

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • aswathkk