aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/base64id/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/base64id/README.md')
-rw-r--r--node_modules/base64id/README.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/node_modules/base64id/README.md b/node_modules/base64id/README.md
new file mode 100644
index 0000000..17689e6
--- /dev/null
+++ b/node_modules/base64id/README.md
@@ -0,0 +1,18 @@
+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();