Nodejs 에서 Random Index 만들기 (UUID)

Random 한 Index 를 만드는 Nodejs 패키지 이다.

UUID

사용량
weekly downloads 가 4천만이 넘는다
uuid

설치

1
npm install uuid

사용예

ES6 Module

1
2
import { v4 as uuidv4 } from 'uuid';
uuidv4();

CommonJS

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

웹브라우저에서 사용

1
2
3
4
<script type="module">
import { v4 as uuidv4 } from 'https://jspm.dev/uuid';
console.log(uuidv4());
</script>