twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

README.md (401B)


      1 base64id
      2 ========
      3 
      4 Node.js module that generates a base64 id.
      5 
      6 Uses crypto.randomBytes when available, falls back to unsafe methods for node.js <= 0.4.
      7 
      8 To increase performance, random bytes are buffered to minimize the number of synchronous calls to crypto.randomBytes.
      9 
     10 ## Installation
     11 
     12    $ npm install base64id
     13 
     14 ## Usage
     15 
     16    var base64id = require('base64id');
     17 
     18    var id = base64id.generateId();