
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
The tolerant JSON parser and encoder for HaXe
TJSON is a project to create a JSON parser that is as tolerant as JavaScript is when it comes to JavaScript object notation, if not more error-tolerant. It supports all the current JSON standard, along with the following tollerances added:
As of 1.1.0, TJSON also includes an encoder that encodes anonymous Haxe objects and arrays into JSON!
Install via haxlib by running the following in your command line:
haxelib install tjson
Be sure to add the following to your .hxml file:
-lib tjson
Import TJSON class with:
import tjson.TJSON;
Then you can read JSON data with:
var jsonData = "{key:'value'}";
var object = TJSON.parse(jsonData);
trace(object.key); // outputs 'value'
It's that easy!
New in 1.1.0 - Encode Haxe objects into a JSON string with:
var objectToEncode={
myKey:'myValue'
};
var json = TJSON.encode(objectToEncode); // {"myKey":"myValue"}
The encoder currently supports two different encoding styles. The default is 'simple', which contains no whitespace. If you want more human-readable output, try the 'fancy' style:
var objectToEncode={
myKey:'myValue'
};
var json = TJSON.encode(objectToEncode, 'fancy');
/*
{
"myKey" : "myValue"
}
*/
Of course, the encoder can also encode arrays:
var myArray = [1,32,43,54];
var json = TJSON.encode(myArray);
New in 1.3.0 - Class objects can now be serialized and unserialized with TJSON!
TJSON will add a '_hxcls' key to the serialized JSON code so it know what class it came from.
New in 1.4.0 - Class object serialization features
If a class object being unserialized has a function named 'TJ_unserialize', it will be called after the object is unserialized.
You can specify properties that should not be serialized by defining a function called 'TJ_noEncode' that returns an array of property names not to serialize.
In this example, TJSON will skip the property called 'dontSerialize':
public function TJ_noEncode():Array<String>{
return ['dontSerialize'];
}
Copyright (c) 2012, Jordan CM Wambaugh All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
FAQs
The tolerant JSON parser and encoder for HaXe
We found that tjson demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.