Gathering detailed insights and metrics for jju
Gathering detailed insights and metrics for jju
npm install jju
Typescript
Module System
99.7
Supply Chain
100
Quality
75.9
Maintenance
100
Vulnerability
100
License
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
540,637,810
Last Day
880,073
Last Week
4,588,186
Last Month
19,308,426
Last Year
184,079,320
Minified
Minified + Gzipped
Latest Version
1.4.0
Package Id
jju@1.4.0
Size
19.49 kB
Published on
Jul 30, 2018
Cumulative downloads
Total Downloads
Last Day
0.8%
880,073
Compared to previous day
Last Week
1.7%
4,588,186
Compared to previous week
Last Month
13.1%
19,308,426
Compared to previous month
Last Year
48.1%
184,079,320
Compared to previous year
jju
- a set of utilities to work with JSON / JSON5 documents
yarn add jju
or
npm install jju
This module provides following functions:
All functions are able to work with a standard JSON documents. jju.parse()
and jju.stringify()
are better in some cases, but slower than native JSON.parse()
and JSON.stringify()
versions. Detailed description see below.
1/* 2 * Main syntax: 3 * 4 * `text` - text to parse, type: String 5 * `options` - parser options, type: Object 6 */ 7jju.parse(text[, options]) 8 9// compatibility syntax 10jju.parse(text[, reviver])
Options:
"ignore" - ignore reserved keys
"throw" - throw SyntaxError in case of reserved keys
"replace" - replace reserved keys, this is the default JSON.parse behaviour, unsafe
Reserved keys are keys that exist in an empty object (hasOwnProperty
, __proto__
, etc.).
1// 'ignore' will cause reserved keys to be ignored: 2parse('{hasOwnProperty: 1}', {reserved_keys: 'ignore'}) == {} 3parse('{hasOwnProperty: 1, x: 2}', {reserved_keys: 'ignore'}).hasOwnProperty('x') == true 4 5// 'throw' will cause SyntaxError in these cases: 6parse('{hasOwnProperty: 1}', {reserved_keys: 'throw'}) == SyntaxError 7 8// 'replace' will replace reserved keys with new ones: 9parse('{hasOwnProperty: 1}', {reserved_keys: 'replace'}) == {hasOwnProperty: 1} 10parse('{hasOwnProperty: 1, x: 2}', {reserved_keys: 'replace'}).hasOwnProperty('x') == TypeError
null_prototype - create object as Object.create(null) instead of '{}' (Boolean)
if reserved_keys != 'replace'
, default is false
if reserved_keys == 'replace'
, default is true
It is usually unsafe and not recommended to change this option to false in the last case.
reviver - reviver function - Function
This function should follow JSON specification
mode - operation mode, set it to 'json' if you want to throw on non-strict json files (String)
1/* 2 * Main syntax: 3 * 4 * `value` - value to serialize, type: * 5 * `options` - serializer options, type: Object 6 */ 7jju.stringify(value[, options]) 8 9// compatibility syntax 10jju.stringify(value[, replacer [, indent])
Options:
ascii - output ascii only (Boolean, default=false) If this option is enabled, output will not have any characters except of 0x20-0x7f.
indent - indentation (String, Number or Boolean, default='\t') This option follows JSON specification.
quote - enquoting char (String, "'" or '"', default="'")
quote_keys - whether keys quoting in objects is required or not (String, default=false)
If you want {"q": 1}
instead of {q: 1}
, set it to true.
sort_keys - sort all keys while stringifying (Boolean or Function, default=false)
By default sort order will depend on implementation, with v8 it's insertion order. If set to true
, all keys (but not arrays) will be sorted alphabetically. You can provide your own sorting function as well.
replacer - replacer function or array (Function or Array) This option follows JSON specification.
no_trailing_comma = don't output trailing comma (Boolean, default=false)
If this option is set, arrays like this [1,2,3,]
will never be generated. Otherwise they may be generated for pretty printing.
mode - operation mode, set it to 'json' if you want correct json in the output (String)
Currently it's either 'json' or something else. If it is 'json', following options are implied:
1/* 2 * Main syntax: 3 * 4 * `text` - text to tokenize, type: String 5 * `options` - parser options, type: Object 6 */ 7jju.tokenize(text[, options])
Options are the same as for the jju.parse
function.
Return value is an array of tokens, where each token is an object:
whitespace
, comment
, key
, literal
, separator
or newline
key
or literal
You can check tokenizer for yourself using this demo.
1/* 2 * Main syntax: 3 * 4 * `text` - text to analyze, type: String 5 * `options` - parser options, type: Object 6 */ 7jju.analyze(text[, options])
Options are the same as for the jju.parse
function.
Return value is an object defining a programming style in which the document was written.
"
or '
depending on which quote is preferredtrue
if unquoted keys were used at least oncetrue
if input has a whitespace tokentrue
if input has a comment tokentrue
if input has a newline tokentrue
if input has at least one trailing comma1/* 2 * Main syntax: 3 * 4 * `text` - original text, type: String 5 * `new_value` - new value you want to set 6 * `options` - parser or stringifier options, type: Object 7 */ 8jju.update(text, new_value[, options])
If you want to update a JSON document, here is the general approach:
1// here is your original JSON document: 2var input = '{"foo": "bar", "baz": 123}' 3 4// you need to parse it first: 5var json = jju.parse(input, {mode: 'json'}) 6// json is { foo: 'bar', baz: 123 } 7 8// then you can change it as you like: 9json.foo = 'quux' 10json.hello = 'world' 11 12// then you run an update function to change the original json: 13var output = jju.update(input, json, {mode: 'json'}) 14// output is '{"foo": "quux", "baz": 123, "hello": "world"}'
Look at this demo to test various types of json.
In a few cases it makes sense to use this module instead of built-in JSON methods.
Parser:
In case of syntax error, JSON.parse does not return any good information to the user. This module does:
$ node -e 'require("jju").parse("[1,1,1,1,invalid]")'
SyntaxError: Unexpected token 'i' at 0:9
[1,1,1,1,invalid]
^
This module is about 5 times slower, so if user experience matters to you more than performance, use this module. If you're working with a lot of machine-generated data, use JSON.parse instead.
Stringifier:
This module behaves more smart when dealing with object and arrays, and does not always print newlines in them:
$ node -e 'console.log(require("./").stringify([[,,,],,,[,,,,]], {mode:"json"}))'
[
[null, null, null],
null,
null,
[null, null, null, null]
]
JSON.stringify will split this into 15 lines, and it's hard to read.
Yet again, this feature comes with a performance hit, so if user experience matters to you more than performance, use this module. If your JSON will be consumed by machines, use JSON.stringify instead.
As a rule of thumb, if you use "space" argument to indent your JSON, you'd better use this module instead.
No vulnerabilities found.
No security vulnerabilities found.