MANOL Framework
A powerful, modern development framework for building scalable applications with ease and efficiency.
Cross-Platform Development
Build once, deploy everywhere with native performance
Modular Architecture
Component-based system for maximum flexibility
High Performance
Optimized runtime with minimal overhead
Cloud Integration
Seamless cloud services and API integration
Quick Start Example
// MANOL Framework Example
import { App, Component, State } from '@sunetos/manol'
class MyApp extends Component {
@State() count = 0
increment() {
this.count++
}
render() {
return (
<div>
<h1>Count: {this.count}</h1>
<button onClick={this.increment}>
Increment
</button>
</div>
)
}
}
App.mount(MyApp, '#app')
Getting Started
1
Install MANOL CLI
npm install -g @sunetos/manol-cli
2
Create New Project
manol create my-app
3
Start Development
cd my-app && manol dev
4
Build for Production
manol build
Key Benefits
Rapid development with minimal boilerplate
Built-in state management and routing
Automatic code splitting and optimization
TypeScript support out of the box
Extensive plugin ecosystem
Hot module replacement for fast development