Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

js-randstr

aswathkk5MIT1.0.2

Simple random string generator

readme

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