Malina.js helps you create a fast and thin web application that runs without a front-end framework
<script>
let name = 'world';
function rename() {
name = 'user';
}
</script>
<h1>Hello {name.toUpperCase()}!</h1>
<button @click={rename}>Rename</button>
You can get started with a simple app by running the following in your terminal:
npm create malina myapp
cd myapp
npm run dev
# open http://localhost:7000/