Created
February 28, 2016 07:58
-
-
Save kavitshah8/0099e53600b90e548b71 to your computer and use it in GitHub Desktop.
Node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// npm i node-uuid | |
var uuid = require('node-uuid'); | |
// Generate a v1 (time-based) id | |
uuid.v1(); | |
// Generate a v4 (random) id | |
uuid.v4(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment