json2toon.co
Secure

Installations

TOON is available in multiple languages. Choose your preferred ecosystem and start integrating TOON into your projects today.

Community

Installation

Add the official ctoon package to your project

#include <toon.hpp>

Usage Example

Quick start guide for encoding and decoding TOON format in C++

// Check repository for specific usage details
#include "toon.hpp"

int main() {
    auto data = toon::object{{"name", "Alice"}, {"age", 30}};
    std::cout << toon::encode(data) << std::endl;
    return 0;
}