madhanhere / 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 builds your web-application to use it without framework on frontend side. Therefore your web-app becomes thinner and faster, and the application itself consist of vanilla JavaScript, look at examples. TodoMVC example 2.7kb (gzipped) and source code

Articles

Example

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

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

Run dev environment:

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

Run dev environment 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

About

Frontend compiler, inspired by Svelte

https://malinajs.github.io

License:MIT License


Languages

Language:JavaScript 97.6%Language:HTML 2.4%