"Build web applications quickly with a simple, readable syntax for dynamic pages"
Simple .anix file syntax for creating beautiful UI layouts quickly.
Built-in support for includes and components to keep your code DRY.
Custom JS event commands for interactive applications.
Simple routing based on your file structure.
Focus on visual design and quick development.
Seamless integration with Node.js and other backends.
page ["Home", "/"] {
div.container {
h1 "Welcome to Anix!"
p "This is a sample page."
button.btn "Click Me"
}
}
js:click(".btn") {
alert('Button clicked!');
}
Clean, concise, and powerful - no complex configurations needed.
npx create-anix <your_app_name>
npm install
npm start