Mock 데이터 생성기
TypeScript 타입 정의를 입력하고 실제 같은 Mock 데이터를 자동 생성하세요
예제 템플릿
아래 예제를 클릭하여 빠르게 시작하세요
사용자 (User)
기본적인 사용자 정보
interface User {
id: string;
name: string;
email: string;
age: number;
isActive: boolean;
}제품 (Product)
전자상거래 제품 정보
interface Product {
id: string;
name: string;
description: string;
price: number;
category: string;
inStock: boolean;
tags?: string[];
}블로그 포스트 (BlogPost)
블로그 게시물 정보
interface BlogPost {
id: string;
title: string;
content: string;
author: string;
createdAt: string;
updatedAt: string;
status: "draft" | "published" | "archived";
tags: string[];
viewCount?: number;
}회사 직원 (Employee)
회사 직원 정보
interface Employee {
id: string;
firstName: string;
lastName: string;
email: string;
phone: string;
position: string;
company: string;
department: "engineering" | "marketing" | "sales" | "hr";
salary: number;
startDate: string;
}