1.0.2 • Published 9 months ago

hx_json_beautify v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
9 months ago

JSON 美化工具--仅需要传入一段需要美化展示的 JSON,即可输出美化后的 JSON 字符串

安装

npm install hx_json_beautify

引入

import { formatJson } from 'hx_json_beautify'

使用

const jsonStr = '{"name":"John Doe","age":30,"city":"New York","isStudent":false,"hobbies":["reading","swimming","traveling"],"address":{"street":"123 Main St","apt":"Apt 4B","zip":"10001"}}
'

const formattedJson = formatJson(jsonStr)

// 输出结果
{
  "name": "John Doe",
  "age": 30,
  "city": "New York",
  "isStudent": false,
  "hobbies": ["reading", "swimming", "traveling"],
  "address": {
    "street": "123 Main St",
    "apt": "Apt 4B",
    "zip": "10001"
  }
}
1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago