https://github.com/localvoid/liquid
[UNMAINTAINED] Library to build User Interfaces in Dart [Virtual DOM]
https://github.com/localvoid/liquid
Last synced: 12 months ago
JSON representation
[UNMAINTAINED] Library to build User Interfaces in Dart [Virtual DOM]
- Host: GitHub
- URL: https://github.com/localvoid/liquid
- Owner: localvoid
- License: bsd-2-clause
- Created: 2014-10-29T05:15:44.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-04T03:21:41.000Z (almost 11 years ago)
- Last Synced: 2025-04-11T21:13:45.855Z (12 months ago)
- Language: Dart
- Homepage: http://localvoid.github.io/liquid/
- Size: 1.09 MB
- Stars: 29
- Watchers: 3
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Liquid (deprecated in favor of [uix](https://github.com/localvoid/uix/))
Library to build User Interfaces in Dart with
[Virtual DOM](https://github.com/localvoid/vdom).
## Installation
Requirements:
- Dart SDK 1.8 or greater
#### 1. Create a new Dart Web Project
#### 2. Add Liquid library and transformer in `pubspec.yaml` file:
```yaml
dependencies:
liquid: any
transformers:
- liquid
```
#### 3. Install it
```sh
$ pub get
```
And now you are ready to use it, just import
`'package:liquid/liquid.dart'` and start writing your first
application with Liquid library
## Examples
Here are simple examples that is build with Liquid library:
- [Hello](https://github.com/localvoid/liquid/tree/master/example/hello)
- [Timer](https://github.com/localvoid/liquid/tree/master/example/basic)
- [100 Animated Boxes](https://github.com/localvoid/liquid/tree/master/example/anim-100)
- [Todo App](https://github.com/localvoid/liquid/tree/master/example/todo)
- [Read DOM](https://github.com/localvoid/liquid/tree/master/example/read-dom)
- [Form](https://github.com/localvoid/liquid/tree/master/example/form)
### TodoMVC example
[TodoMVC](http://todomvc.com/) application
[[Source Code](https://github.com/localvoid/todomvc-liquid)], it is
heavily commented and demonstrates many important features of this
library.
### DBMonster Benchmark
[Run](http://localvoid.github.io/liquid-dbmonster/)