TypeScript Nodejs アプリで Uuid を使用する

Muhammad Ibrahim Alvi 2023年6月21日
  1. UUID の目的と使用法
  2. TypeScript Nodejs に uuid パッケージをインストールして実装する
TypeScript Nodejs アプリで Uuid を使用する

このチュートリアルでは、開発者の最良かつ最も一般的な方法で使用される TypeScript Nodejs アプリの npm パッケージ uuid に関するガイドラインを詳しく説明します。

これにより、TypeScript Nodejs アプリでコーディングを使用して uuid を使用する方法がわかり、パッケージをプロジェクトにインストールする主な理由がわかります。

まず、npm パッケージ uuid と開発者コミュニティでのその使用を見てみましょう。

UUID の目的と使用法

Universal Unique Identifier の略である UUID は、ネットワークまたはシステム内で一意である必要がある情報の識別などの他の用途を伴うデータベース上のデータの移行などのジョブで実際に役立つ一意の値です。

UUID は一意であり、繰り返される可能性が低いため、組織内の物理ハードウェアの識別子やデータベースの連想キーとして役立ちます。

UUID は、連続したデータベース ID を隠す優れた方法です。 npm パッケージ マネージャーは、アプリで上記のタスクを実行するためにプロジェクトで使用する uuid というパッケージを提供します。

次に、uuid パッケージを使用して TypeScript Nodejs プロジェクトをセットアップしましょう。

TypeScript Nodejs に uuid パッケージをインストールして実装する

まず、次のコマンドを入力して、プロジェクト内の package.json を初期化します。

npm i -y

出力:

TypeScript UUID - 出力 1

プロジェクトで package.json を初期化した後、次のコマンドを入力して、プロジェクトで TypeScript をセットアップします。

 npm i typescript --save-dev

次に、次の行を tsconfig.json ファイルに追加します。

{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "strict": true,
    "outDir": "dist",
    "sourceMap": true
  }
}

TypeScript をプロジェクトに構成した後、次のコマンドを実行して uuid パッケージをプロジェクトに追加します。

npm install uuid

これらの手順により、uuid パッケージの依存関係を使用してプロジェクトがセットアップされます。

TypeScript プロジェクトで uuid を使用するには、Universal Unique Identifier を生成できる UUID としてファイルに v4 定数をインポートします。

import { v4 as uuid } from 'uuid';
const id: string = uuid();

console.log(id)

出力:

TypeScript UUID - 出力 2

Muhammad Ibrahim Alvi avatar Muhammad Ibrahim Alvi avatar

Ibrahim is a Full Stack developer working as a Software Engineer in a reputable international organization. He has work experience in technologies stack like MERN and Spring Boot. He is an enthusiastic JavaScript lover who loves to provide and share research-based solutions to problems. He loves problem-solving and loves to write solutions of those problems with implemented solutions.

LinkedIn