Node-Red configuration
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Dirk Alders 6b28a8b302 Initial nodered configuration il y a 1 an
..
lib Initial nodered configuration il y a 1 an
CHANGELOG.md Initial nodered configuration il y a 1 an
LICENSE Initial nodered configuration il y a 1 an
README.md Initial nodered configuration il y a 1 an
package.json Initial nodered configuration il y a 1 an

README.md

base64id

Node.js module that generates a base64 id.

Uses crypto.randomBytes when available, falls back to unsafe methods for node.js <= 0.4.

To increase performance, random bytes are buffered to minimize the number of synchronous calls to crypto.randomBytes.

Installation

$ npm install base64id

Usage

var base64id = require(‘base64id’);

var id = base64id.generateId();