🐱 Simo is assembling components...
Our cat is hard at work!⌛
Cancell

Simo Is Integration Flexibility

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.

Install React js

First step : Run the following command in the terminal or CMD inside your desired folder to install:

Windows (CMD)
@norender npm create vite@latest myproject -- --template react-swc & cd myproject & npm install & npm run dev

* React is fully installed. Now, just add Simo to your project. *

second step : This is the link for using the Simo library online.Add this link to your index.html file to use Simo online.

index.html
@norender
index.html
@norender <---!doctype html> Vite + React

third step : Create a file named simocount.html and place the following code inside it to create a Simo partial component:

simocount.html
@norender

fourth step : Finally, add it to the main React component of your project, such as App.js, as follows:

App.jsx
@norender function App() { return ( @import[src/partialSimo.html][simocount] ) } export default App;

finish : Run the following command in your terminal and check the output:

vs code (terminal)
@norender npm run dev