malinajs / malinajs

Frontend compiler, inspired by Svelte

Home Page:https://malinajs.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Malina.js

Malina.js helps you create a fast and thin web application that runs without a front-end framework

Links

Benchmark

Benchmark

Startup metrics

Benchmark

Articles

Example

<script>
  let name = 'world';
    
  function rename() {
    name = 'user';
  }
</script>

<h1>Hello {name.toUpperCase()}!</h1>
<button @click={rename}>Rename</button>

Quick Start

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/

License

MIT

About

Frontend compiler, inspired by Svelte

https://malinajs.github.io

License:MIT License


Languages

Language:JavaScript 99.3%Language:HTML 0.7%