[개발] node.js 에서 고유한 값을 가지는 transaction id 생성하기steemCreated with Sketch.

in hive-101145 •  2 years ago 

안녕하세요 @realmankwon 입니다.

node.js 에서 고유한 값을 가지는 transaction id 를 생성하는 간단한 방법은 다음과 같습니다.

const { v4: uuidv4 } = require('uuid');

const transaction_id = uuidv4();

console.log(transaction_id);

위 코드를 실행하면, 새로운 UUID가 생성되어 출력됩니다. uuidv4() 함수는 v4 버전의 UUID를 생성합니다.

결과값은 다음과 같습니다.

'1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed'
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!