hx_json_beautify
v1.0.2
Published
Make your JSON data easy to read
Downloads
198
Maintainers
Readme
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"
}
}