JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4147
  • Score
    100M100P100Q145329F
  • License BSD-2-Clause

Random token generation of given size

Package Exports

  • random-token

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (random-token) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

random-token

generate a (pseudo-)random string of given length composed from alphanumeric characters

install

npm install random-token

usage

initiate

var randomToken = require('random-token');

default salt is "abcdefghijklmnopqrstuvwxzy0123456789"

var token = randomToken(16); // example output → 'xg8250nbg4klq5b3'

different salt

var randomToken = require('random-token').create('abcdefghijklmnopqrstuvwxzyABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789');
var token = randomToken(16); // example output → '3ZGErMDCwxTOZYFp'

Note: valid salts are strings with length > 0 if an invalid salt is given to .create, the returned generator will use the default salt

convenience methods

.create

create a different generator

var randomToken = require('random-token').create('Aa0');
var rt = randomToken.gen('Aa0');
var token = rt(16); // example output → 'A0aAAaA0AA0Aa0AA'

.salt

you can check a generators salt by calling .salt() on it

var randomToken = require('random-token').gen('abcdefghijklmnopqrstuvwxzyABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789');
randomToken.salt(); // output → 'abcdefghijklmnopqrstuvwxzyABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'