Lemonadejs is a super lightweight reactive vanilla javascript micro-library (4Kb). It aims to help the integration between the JavaScript (controllers) and the HTML (view). It supports two-way binding and integrates natively with jSuites to help to create amazing interfaces quicker.
It would help you deliver reusable components and does not require transpilers, babel, or hundreds of other dependencies. It works just fine in any javascript dev environment. LemonadeJS has a quick learning curve and keeps coding fun and very close to native JS.
- Make rich and user-friendly web interfaces and applications
- Handle complicated data inputs with ease and convenience
- Improve the software user experience
- Create rich CRUDS and beautiful UI
- Highly flexible and customizable
- Lightweight and simple to use
Build modern applications with lemonadeJS and node.
See this example on codesandbox
import lemonade from "lemonadejs";
import Hello from "./Hello";
export default function App() {
let self = {};
self.count = 1;
let template = `<div>
<div><Hello /></div>
<p>You clicked {{self.count}} times</p>
<button onclick="self.count++;">Click me</button>
</div>`;
return lemonade.element(template, self, { Hello });
}
Simplicity to run in the browser without dependencies, servers, transpilers.
<html>
<script src="https://lemonadejs.net/v1/lemonade.js"></script>
<div id="root"></div>
<script>
function Hello() {
let self = {};
let template = `<h1>Hello World</h1>`;
return lemonade.element(template, self);
}
function App() {
let self = {};
self.count = 1;
let template = `<div>
<div><Hello /></div>
<p>You clicked {{self.count}} times</p>
<button onclick="self.count++;">Click me</button>
</div>`;
return lemonade.element(template, self, { Hello });
}
lemonade.render(App, document.getElementById('root'));
</script>
</html>
% npm install lemonadejs
This software is free to use and it is distributed under the MIT license.
https://jsuites.net
https://jspreadsheet.com
https://bossanova.uk/jspreadsheet