This is an old revision of the document!
JavaScript Object Notation (JSON)
JavaScript Object Notation (referred to as JSON) is a common text based format for writing objects, for example [1, 2, 3]
or {"a": 1, "b": 10}
.
AHK object syntax is very close to JSON syntax, however, JSON requires field names (like "a"
in the previous example) to be in quotes, and allows new lines to be started nearly anywhere.
The traditional operations for JSON are "load"/"parse" and "dump", where loading translates JSON text into an object, and dump translates an object into JSON text.
ggg
Libraries
- JSON.ahk [v1] by Coco (Cocobelgica) - The standard JSON library for AHKv1.
- cJson.ahk [v1][v2] by Geek (GeekDude) - A performance-oriented JSON library using machine code to provide higher speeds.
- jsongo [v2] by GroggyOtter - A very feature-complete JSON library.
- JXON_ahk2 [v2] by TheArkive - A function-based pure AHK JSON library.
- cJson--created by dll [v2] by Mono919 - A DLL-based JSON library.