TOML을 JSON으로 변환

역변환이 필요하신가요?
JSON to TOML Converter

TOML 입력

1

JSON 출력

TOML 데이터를 입력하여 JSON(으)로 변환하세요

변환된 데이터가 여기에 표시됩니다

TOML을 JSON으로 변환하는 방법

  1. 1단계 – TOML 설정 붙여넣기

    • TOML 키-값, [섹션], [[배열 테이블]]을 에디터에 붙여넣으세요.
    • 값은 문자열, 숫자, 불리언, 배열, 날짜 등이 될 수 있습니다.
    • .toml 파일을 컴퓨터에서 가져올 수 있습니다.
  2. 2단계 – JSON 확인

    • 도구가 TOML 의미를 유지하며 유효한 JSON 객체로 변환합니다.
    • 날짜(RFC 3339)는 문자열로 유지되며, 가능한 경우 타입이 보존됩니다.
    • 테이블 구조가 중첩 JSON 속성으로 표현되는지 확인하세요.
  3. 3단계 – 결과 내보내기

    • JSON을 복사해 JavaScript/TypeScript 앱에서 사용하세요.
    • 데이터 마이그레이션 또는 API 사용을 위해 .json 파일로 다운로드하세요.
Example: TOML to JSON
# Input TOML
title = "TOML Example"

[owner]
name = "Tom Preston-Werner"

// Output JSON
{
  "title": "TOML Example",
  "owner": {
    "name": "Tom Preston-Werner"
  }
}

Related tools

자주 묻는 질문

What is TOML format?

TOML (Tom's Obvious Minimal Language) is a configuration file format that's easy to read due to obvious semantics. It's designed to map unambiguously to a hash table.

How are TOML sections converted?

TOML sections [section] become nested JSON objects. Dotted keys like 'database.host' create nested structures automatically.

What TOML features are supported?

The converter supports strings, numbers, booleans, arrays, inline tables, nested sections, and basic date/time parsing. Complex multiline strings and advanced TOML features may have limited support.

Are array tables supported?

Yes. Array tables [[products]] are converted to JSON arrays containing objects, which is useful for representing repeated configuration blocks.

Is my data secure?

Yes, all data processing happens entirely in your browser. Your data is never sent to any server, ensuring complete privacy and security.

TOML을 JSON으로 변환 | JSONSwiss