【笔记】JSON5学习笔记
前言
JSON5 is an extension to the popular JSON file format that aims to be easier to write and maintain by hand (e.g. for config files).(官网)
下载依赖
MacOS
1 | brew install json5 |
将JSON5文件编译为JSON文件
-o <file>.json:指定输出的文件名<file>.json5:指定输入的文件名
1 | json5 -o <file>.json <file>.json5 |
JSON5文件的新特性
向JSON文件中添加注释
1 | { |
省略键的引号
1 | { |
值使用单引号包裹
1 | { |
字符串值中添加转义字符
1 | { |