https://lemonadejs.net/v1 menu [logo] LemonadeJS MICRO REACTIVE LIBRARY * Home * Github * Download * Docs Learning Center Documentation * Getting started * Download * Two-way binding * Special properties * Native methods * Native events * Classes * Frontend translations * Inheritance * Routes * State container * Form elements Resourses * Quick reference * Debugging * Contributing Resources Examples * BMI Calculation * Lamp * Event countdown * Color Changer * Hangman game * Shopping Plugins * Image cropper Useful tools * JSS Spreadsheet * Jsuites Lemonadejs: Reactive library Lemonadejs is a super lightweight 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 to deliver reusable components and does not require transpilers, babel, or hundreds of other dependencies and work 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 [home] Simplicity Run lemonadejs in your browser without dependencies, servers, transpiling, only lemonadejs.
Modern applications Build modern applications using LemonadeJS. import lemonade from "lemonadejs"; import Hello from "./Hello"; export default function App() { let self = {}; self.count = 1; let template = `You clicked {{self.count}} times