본문 바로가기
Frontend/React

[React] 고유한 아이디 부여 라이브러리 (uuid)

by 민두이 2023. 2. 4.
728x90
반응형

https://www.npmjs.com/package/uuid

 

uuid

RFC4122 (v1, v4, and v5) UUIDs. Latest version: 9.0.0, last published: 5 months ago. Start using uuid in your project by running `npm i uuid`. There are 50997 other projects in the npm registry using uuid.

www.npmjs.com

고유한 아이디 부여해주는 라이브러리를 활용하여 리액트 사용시 key값을 지정해주기 용이함

 

  • 다운로드
npm i uuid
  • 임포트 해서 아래와 같이 사용
import { v4 as uuidv4 } from 'uuid';
uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'
728x90