New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

random-token

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

random-token

Random token generation of given size

latest
Source
npmnpm
Version
0.0.8
Version published
Maintainers
1
Created
Source

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'

Keywords

token

FAQs

Package last updated on 02 Apr 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts