jsex
v1.0.32
Published
data serialization/deserialization for javascript
Maintainers
Readme
What is jsex?
jsex is a strict subset of javascript designed for data serialization/deserialization. It supports most native javascript data types. You may consider it as JSON Extended or JavaScript Expression.
How many data types are supported?
As many as possible, including:
- All types supported by JSON
- function
- bigint
- symbol
- Date
- Error
- RegExp
- Set
- Map
- Typed Arrays
- Infinity, NaN and undefined
How many browsers are supported?
jsex relies on certain ES2020 features, making it difficult to provide a comprehensive list of compatible browsers. To ensure proper functionality in production environments, we recommend installing appropriate polyfills or using transpilers like Babel.
How to serialize data?
By calling toJsex(data, options).
optionsdefaults to{sorting: false, implicitConversion: false, jsonCompatible: false, debug: false}.sorting: Whether sorting the contents ofMap,SetandObject.implicitConversion: Whether attempts to resolve unrecognized type by calling itsvalueOfmethod.jsonCompatible: Whether generating JSON compatible string.debug: Whether throw error for unexpected data instead of skip them silently. eg: native functions, cyclic references, etc.
serializing example:
require('jsex');
let data = {
someRegex: RegExp('\r\u2028\n\ud800', 'ig'),
someSet: new Set([a => a, 1, 0n]),
[Symbol.for('symbolKey')]: 'valueForSymbolKey',
normalKey: 'valueForNormalKey'
};
console.log('normal:', toJsex(data), '\nsorted:', toJsex(data, {sorting: true}));
//normal: {"someRegex":/\r\u2028\n\ud800/gi,"someSet":new Set([Function("a","return a"),1,0n]),"normalKey":"valueForNormalKey",[Symbol.for("symbolKey")]:"valueForSymbolKey","__proto__":null}
//sorted: {"normalKey":"valueForNormalKey","someRegex":/\r\u2028\n\ud800/gi,"someSet":new Set([0n,1,Function("a","return a")]),[Symbol.for("symbolKey")]:"valueForSymbolKey","__proto__":null}
try {
JSON.parse(toJsex(data, {jsonCompatible: true}));
} catch(e) {
console.log('error: jsonCompatible makes sense only if data does not contain extended types');
}another serializing example:
let obj = {
["__proto__"]: '\v',
"tab": "\t"
},
jsonstr = JSON.stringify(obj),
jsexstr = toJsex(obj);
console.log('jsexstr:', jsexstr, '\njsonstr:', jsonstr);
//jsexstr: {["__proto__"]:"","tab":" ","__proto__":null}
//jsonstr: {"__proto__":"\u000b","tab":"\t"}
console.log('is compatible:', toJsex(obj, {jsonCompatible: true}) === jsonstr);
//is compatible: trueHow to deserialize?
Basically you can just eval the string if you trust the source. However if you don't, use String.prototype.parseJsex(forbiddenMethods) instead. This method returns undefined if parsing failed, or an Object with a length key (indicating the number of parsed characters) and a value key (containing the actual result).
forbiddenMethodsdefaults to aSetcontaining all implicit methods of the current javascript engine. These methods are typically excluded to prevent automatic execution. You can also set this parameter tonullor provide a customSet.
deserializing example:
//following the above code
let evalJsex = Function('return ' + jsexstr)(),
parseJsex = jsexstr.parseJsex().value,
evalJson = Function('return ' + jsonstr)(),
parseJson = JSON.parse(jsonstr),
parseJsonByJsex = jsonstr.parseJsex().value;
console.log('evalJsex:', evalJsex, '\nparseJsex:', parseJsex, '\nevalJson:', evalJson, '\nparseJson:', parseJson, '\nparseJsonByJsex:', parseJsonByJsex);
console.log('json is a subset of javascript?', JSON.stringify(evalJson) === JSON.stringify(parseJson));
//json is a subset of javascript? false
console.log('jsex is a subset of javascript?', JSON.stringify(evalJsex) === JSON.stringify(parseJsex) && JSON.stringify(evalJson) === JSON.stringify(parseJsonByJsex));
//jsex is a subset of javascript? trueDoes parseJsex support JSON string?
Yes, but any __proto__ key of Object in JSON objects will be ignored, as demonstrated in the example above.
How to serialize a class?
For security reason, class is not supported by default. However, you can serialize them as strings by calling toJsex with implicitConversion option set to true.
class example:
class customType {
constructor () {
this.args = [...arguments];
}
valueOf() {
return this.args;
}
}
let source = toJsex(customType, {implicitConversion: true});
let deserializedClass = Function('return ' + source.parseJsex().value)();
console.log(deserializedClass.toString() === customType.toString());
//trueHow to serialize a custom type?
jsex doesn't support custom type definitions. However, you can resolve custom types to supported types by implementing a valueOf method, then calling toJsex with the implicitConversion option set to true.
custom type example:
//following the above code
let instance1 = new customType(1, 2n, {});
let jsex = toJsex(instance1, {implicitConversion: true});
console.log(jsex);
//[1,2n,{"__proto__":null}]
let instance2 = Reflect.construct(deserializedClass, jsex.parseJsex().value);Can I use comments in jsex?
Yes, comments are allowed, but not in all positions. For example, -/*123*/4 is invalid in jsex.
Is there any other difference between JSON and jsex?
Yes, there are a few more differences.
- jsex differentiates between
0and-0. Objectin jsex have no prototype, making any key name safe to use.- By default,
toJsexdoesn't escape ASCII control characters (except for\rand\n). toJsexincludes non-enumerable properties and symbol keys inObject.
When should I use jsex?
When you are using javascript, but JSON does not fit your needs.
