puppyid
v1.1.0
Published
Lightweight utility for generating unique process and random IDs in Node.js
Downloads
18
Maintainers
Readme
puppyid
On npm @ https://www.npmjs.com/package/puppyid
And GitHub @ https://github.com/onlypuppy7/puppyid
Tiny thing that just makes a process ID string, ported to npm. Another useless file taken out of my projects!
Install
npm install puppyid
Usage
import { id, createId } from 'puppyid';
console.log(`Generated ID for this process: ${id}`);
console.log(`Some random other ID: ${createId()}`);