Learn the syntax in order
Walk through bindings, scalar values, containers, types, comments, and multiline text before moving into references and nodes.
Start typing to search the site.
Developer Start
If you are evaluating AEON as a developer, the first useful question is: what do I write, what does the runtime produce, and where does validation happen?
import { runRuntime } from "@altopelago/aeon-runtime";
const source = [
'app:object = {',
' name:string = "AEON demo"',
' port:number = 8080',
' enabled:boolean = true',
'}'
].join("\n");
const result = runRuntime(source, {
mode: "strict",
output: "json",
includeAnnotations: true
});
if (result.meta.errors.length === 0) {
console.log(result.document);
}
The finalized JSON projection is plain application data produced after AEON has checked the source claims.
{
"app": {
"name": "AEON demo",
"port": 8080,
"enabled": true
}
}
WriteStart with typed bindings, objects, lists, tuples, references, and prose blocks in the playground.
ValidateRun in strict mode when you want reserved datatypes, explicit structure, and fail-closed diagnostics.
MaterializeAsk for JSON when you want ordinary application data after AEON has preserved and checked the source claims.
InspectTurn on annotations when tooling needs source spans, comments, or parallel metadata without changing the data.
Install
For most applications, the runtime package is the simplest entry point because it coordinates compile, validation, reference handling, finalization, and diagnostics.
npm install @altopelago/aeon-runtime
Examples
The examples repository is the best next stop when you want to see AEON source beside runnable code. Start with the Hello World examples, then move into typed objects, schemas, validation, and runtime output.
Hello WorldBegin with the smallest source files to see how bindings and scalar values become application data.
Runtime loopsCompare source input, validation diagnostics, and accepted JSON projections in compact examples before wiring AEON into a larger project.
Language patternsUse the examples to learn objects, lists, references, schemas, and browser demos in practical context.
Next
Walk through bindings, scalar values, containers, types, comments, and multiline text before moving into references and nodes.
Read how vocabulary, grammar, profiles, schemas, conventions, and Tonics add meaning without giving documents authority over themselves.
Use the playground to switch modes, inspect AES and data output, and see annotation stream behavior while you edit.