0.0.1 • Published 11 years ago

token.js v0.0.1

Weekly downloads
11
License
-
Repository
github
Last release
11 years ago

token.js Build Status

Simple Node utility to generate a random token including the ability to define the length.

Installation

$ npm install token.js

Example

var token = require('token.js');
console.log("Generate a 6 character token:", token());
console.log("Generate a 32 character token:", token(32));