@altopelago/aeon-lexer
v0.9.0
Published
Tokenization for AEON source text.
Readme
@altopelago/aeon-lexer
Tokenization for AEON source text.
Installation
pnpm add @altopelago/aeon-lexerUsage
import { tokenize } from '@altopelago/aeon-lexer';
const result = tokenize('answer = 42');
for (const token of result.tokens) {
console.log(token.kind, token.raw);
}Use this package when you need direct token access for tooling, analysis, or editor features.
If you want the stable application-facing entry point, prefer @altopelago/aeon-core.
