Skip to content

malinajs/malinajs

Repository files navigation

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