Malina.js

Malina.js

Frontend compiler, inspired by Svelte
GitHub
1.11k
Created 3 years ago, last commit 3 months ago
5 contributors
622 commits
Stars added on GitHub, month by month
0
11
12
1
2
3
4
5
6
7
8
9
10
2022
2023
Stars added on GitHub, per day, on average
Yesterday
+2
Last week
+0.6 /day
Last month
+0.2 /day
Last 12 months
+0.2 /day
README

Malina.js

Malina.js builds your web-application to use it without framework on frontend side. Therefore your web-app becomes thinner and faster, and the application itself consists of vanilla JavaScript, look at examples. TodoMVC example 2.7kb (gzipped) and source code.

For documentation about Malinajs, please visit our website.
Also, please join our community on Discord or Telegram.

tools

Articles

The Gist

<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:

npx create-malina myapp
cd myapp
npm run dev
# open http://localhost:7000/

Or via Docker:

docker run --rm -it --user ${UID} -p 7000:7000 -v `pwd`:/app/src lega911/malina
# open http://localhost:7000/

Build compiler

npm install
npm run build

License

MIT