JSON 형식
JavaScript 객체를 들여쓰기된 JSON 문자열로 구문 분석합니다.
설치 중
1 npm install json-format
용법
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 var jsonFormat = require('./');
var fs = require('fs');
var obj = {
a: 1,
b: 2
}
/* using config default, indent with tabs */
fs.writeFile('example_tabs.json', jsonFormat(obj), function(err){
if (err) throw err;
console.log('saved');
});
/* using indent with spaces */
var config = {
type: 'space',
size: 2
}
fs.writeFile('example_spaces.json', jsonFormat(obj, config), function(err){
if (err) throw err;
console.log('saved');
});
결과example_tabs.json
1
2
3
4{
"a": 1,
"b": 2
}
결과example_spaces.json
1
2
3
4{
"a": 1,
"b": 2
}
기본 크기
1
2
3
4{
"tab": { "size": 1 },
"space": { "size": 4 }
}
구성 기본값
1
2
3{
"type": "tab"
}