|
| 1 | +# 🍦 **VanJS**: A 1.2kB Grab 'n Go Reactive UI Framework without React/JSX |
| 2 | + |
| 3 | +**VanJS** (abbr. **Van**illa **J**ava**S**cript) is an ***ultra-lightweight***, ***zero-dependency*** and ***unopinionated*** Reactive UI framework based on pure vanilla JavaScript and DOM. Programming with **VanJS** feels a lot like React. Check-out the `Hello World` code below: |
| 4 | + |
| 5 | +```javascript |
| 6 | +// Reusable components can be just pure vanilla JavaScript functions. |
| 7 | +// Here we capitalize the first letter to follow React conventions. |
| 8 | +const Hello = () => div( |
| 9 | + p("👋Hello"), |
| 10 | + ul( |
| 11 | + li("🗺️World"), |
| 12 | + li(a({href: "https://vanjs.org/"}, "🍦VanJS")), |
| 13 | + ), |
| 14 | +) |
| 15 | + |
| 16 | +van.add(document.body, Hello()) |
| 17 | +// Alternatively, you can write: |
| 18 | +// document.body.appendChild(Hello()) |
| 19 | +``` |
| 20 | + |
| 21 | +**VanJS** helps you manage state and UI binding as well, with a more natural API: |
| 22 | + |
| 23 | +```javascript |
| 24 | +const Counter = () => { |
| 25 | + const counter = van.state(0) |
| 26 | + return div( |
| 27 | + "❤️ ", counter, " ", |
| 28 | + button({onclick: () => ++counter.val}, "👍"), |
| 29 | + button({onclick: () => --counter.val}, "👎"), |
| 30 | + ) |
| 31 | +} |
| 32 | + |
| 33 | +van.add(document.body, Counter()) |
| 34 | +``` |
| 35 | + |
| 36 | +## Why VanJS? |
| 37 | + |
| 38 | +**VanJS** has the vision to be the [scripting language](https://vanjs.org/about#story) for UI, just like `bash` is the scripting language for terminal. **VanJS** empowers frontend engineers, backend engineers, system engineers, data scientists, and anyone else to build comprehensive user interfaces. You can code with **VanJS** anywhere, any time, and on any device – _even on your smartphone!_ 👏👏👏 |
| 39 | + |
| 40 | +### Reative Programming without React/JSX |
| 41 | + |
| 42 | +Declarative DOM tree composition, reusable components, reative state binding - **VanJS** offers every good aspect that React does, but without the need of React, JSX, transpiling, virtual DOM, or any hidden logic. Everything is built with simple JavaScript functions and DOM. |
| 43 | + |
| 44 | +### Grab 'n Go |
| 45 | + |
| 46 | +***No installation***, ***no configuration***, ***no 3rd-party dependencies***, ***no transpiling***, ***no IDE setups***. Adding a line to your script or HTML file is all you need to start coding. **VanJS** allows you to focus on the business logic of your application, rather than getting bogged down in frameworks and tools. |
| 47 | + |
| 48 | +### Ultra-Lightweight |
| 49 | + |
| 50 | +**VanJS** is a very thin layer on top of Vanilla JavaScript and DOM, barely enough to make the DOM manipulation and state binding as ergonomic as (if not more than) React, and it delegates most of work to standard browser APIs implemented in native code. As a result, the bundled size of **VanJS** is just 1.2kB, which is **more than 100 times** smaller than most popular UI frameworks: |
| 51 | + |
| 52 | + |
| 53 | + |
| 54 | +> _Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away._ |
| 55 | +> |
| 56 | +> _-- Antoine de Saint-Exupéry, Airman's Odyssey_ |
| 57 | +
|
| 58 | +### TypeScript Support |
| 59 | + |
| 60 | +**VanJS** provides first-class support for TypeScript. Simply download the corresponding `.d.ts` file along with your `.js` file, and you'll be able to take advantage of type-checking, IntelliSense, large-scale refactoring provided by your preferred development environment. Refer to the [Download Table](https://vanjs.org/start#download-table) to find the right `.d.ts` file to work with. |
| 61 | + |
| 62 | +### Easy to Learn |
| 63 | + |
| 64 | +**VanJS** puts heavy emphasis on the simplicity of the framework. There are only 4 exported functions in the API and feels a lot like React. Because of that, the [walkthrough tutorial](https://vanjs.org/tutorial) is the same as the full API referrence, and can be learned within 1 hour for most developers. |
| 65 | + |
| 66 | +## Want to Learn More? |
| 67 | + |
| 68 | +* Download and [Get Started](https://vanjs.org/start) |
| 69 | +* Learn from the [Tutorial](https://vanjs.org/tutorial) |
| 70 | +* Learn by [Examples](https://vanjs.org/demo) |
| 71 | +* Convert HTML snippet to **VanJS** code with our online [HTML to **VanJS** Converter](https://vanjs.org/convert) |
0 commit comments