module watt.json

Modules for parsing JSON.

For small and simple jobs, the watt.json.dom parser is best.

If your JSON files are large, or your needs are more complex, you can use the watt.json.sax parser. The DOM parser is built upon this also.

Code Map

//! Modules for parsing JSON.
module watt.json;

public import watt.json.util;
public import watt.json.sax;
public import watt.json.dom;