Skip to content

Instantly share code, notes, and snippets.

@kavitshah8
Created February 28, 2016 07:58
Show Gist options
  • Save kavitshah8/0099e53600b90e548b71 to your computer and use it in GitHub Desktop.
Save kavitshah8/0099e53600b90e548b71 to your computer and use it in GitHub Desktop.
Node
// 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