Skip to content

Instantly share code, notes, and snippets.

@subkitio
Last active December 26, 2015 19:53
Show Gist options
  • Save subkitio/dbefb54f64599ba6fe12 to your computer and use it in GitHub Desktop.
Save subkitio/dbefb54f64599ba6fe12 to your computer and use it in GitHub Desktop.
Generates a GUID
const uuid = require('node-uuid');
let guid = uuid.v4();
console.log(`Generated GUID: ${guid}`);
res.send({
id: guid
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment