calyx
v0.17.0
Published
Generative grammars for creative coding
Downloads
33
Readme
Calyx
A JavaScript port of Calyx, a Ruby based generative grammar tool.
Status
Install
npm install calyx
Usage
Most of the existing documentation is for the Ruby version, but some brief usage notes are included below.
ESM
import calyx from "calyx"
const hello = calyx.grammar({
"start": "Hello world."
})
CommonJS
const calyx = require("calyx")
const hello = calyx.grammar({
"start": "Hello world."
})
Generator API
Call generate
on a grammar instance to generate a random text based on your configured rules.
const result = hello.generate()
generate
returns a Result
type which allows you to access the generated text as a string or an s-expression tree of arrays.
result.text
result.tree
Example Usage
Every grammar feature documented for the Ruby version should work here (if not, please raise a bug report).
The main difference between the Ruby and JavaScript implementations is the class-based Ruby DSL for defining grammar rules. This doesn’t exist in the JavaScript version which only supports definitions in the object-literal format with string keys for rule names.
import { grammar } from "calyx"
const companyNames = grammar({
"start": ["{web_two_punkt_oh} {ext}", "{acme_variations} {ext}"],
"ext": ["LLC", "Ltd", "Limited", "Pty Ltd"],
"web_two_punkt_oh": ["{punktrs}r", "{punktrs}zy"],
"punktrs": ["Lick", "Stick", "Brick", "Syntax", "Relax", "Back"],
"acme_variations": "Acme {acme_noun}",
"acme_noun": ["Products", "Industries", "Goods", "Holdings", "Services"]
})
const company = companyNames.generate()
console.log(company.text)
Syntax
License
This package is copyright 2017-2022 Mark Rickerby and distributed freely under the terms of the MIT License. See the LICENSE file packaged with this software distribution.