@import[components/simoheader.html]
Simo Logo

Simo

The library for web and native user interfaces

Get Started

Example Code in Simo

Below is a simple counter written with Simo.

simocounter.html
@norender
Try it Yourself »

Features

Component-Based Architecture

Simo promotes reusable components, allowing developers to create modular and maintainable code.

Asynchronous Loading

Simo supports lazy loading to improve page performance and user experience.

Dynamic Customization

Users can customize components dynamically using attributes without modifying code.

Simplified Syntax

Simo’s straightforward syntax makes it easy for both beginners and experienced developers.

Integration Flexibility

Simo can be integrated into any project, including React, Blazor, Angular, and other frameworks.

Internal Features

Many built-in features reduce dependency on external libraries.

Efficient State Management

Simo simplifies state management with intuitive handling of component states.

Open Source Advantage

Simo is open-source, allowing developers to freely modify and share code.

Partialing Components with Simo

With Simo, you can break down your HTML file into smaller sections like the header , footer , and other parts of your site, and load each section asynchronously.
This improves site speed and makes managing and updating your code easier. Additionally, instead of repeating commonly used sections like the header and footer on every page, you can simply call their components

userCard.html
@norender

main

index.html
@import[components/partials/myheader.html] @import[components/partials/myside.html]

main

Try it Yourself »

Whether you work on your own or with thousands of other developers, using Simo feels the same. It is designed to let you seamlessly combine components written by independent people, teams, and organizations.

Create user interfaces from components

Simo lets you build user interfaces out of individual pieces called components. Create your own Simo components like boxcard, userpic, userinfo, btnlike, and usercard. Then combine them into entire pages, components, and apps.

userCard.html
@norender Andrew Clark Engineer at Vercel
index.html
Andrew Clark Engineer at Vercel
Try it Yourself »

Dynamic Data Synchronization with @datasync

With @datasync in the Simo framework, you can dynamically bind your data to components. Here, the user list is automatically rendered and updates whenever the data changes.

users.html
@norender

User List

@---data---sync(th---isid.users){ {data.fullname} {data.posation} }
users.html

User List

@datasync(thisid.users){ {data.fullname} {data.posation} }
Try it Yourself »

Add interactivity wherever you need it

Simo components receive data and return what should appear on the screen.
You can pass them new data in response to an interaction, like when the user types into an input. Simo will then update the screen to match the new data.

users.html
@norender

@{this---id.count??this---id.filterusers.length} Users

@---datasync(thisid.filterusers){ {data.fullname} {data.posation} }
users.html

@{thisid.count??thisid.filterusers?.length} Users

@datasync(thisid.filterusers){ {data.fullname} {data.posation} }
Try it Yourself »

Simo Is Integration Flexibility

Below is a simple counter written with Simo and React.

Simo
@norender
React

import { useState } from "react";

function Counter() {
    const [count, setCount] = useState(0);
                                    
    return (
        <button onClick={() => setCount(count + 1)} className="bg-blue-500 font-bold p-4 rounded-lg text-2xl text-white w-96" >
            count is {count}
        </button>
    );
}
                                    
export default Counter;
                                    
                                

Simo can be integrated into any project, including React, Blazor, Angular, and other frameworks. You don’t have to build your whole page in Simo. Add Simo to your existing HTML page, and render interactive Simo components anywhere on it.

Try it Yourself »

Elevate Your Website with Stunning Templates!

Discover beautifully crafted, fully responsive templates designed to make your website stand out effortlessly.

@import[components/partials/mythems.html]