The Protevus Platform: Unified Full-Stack Development https://protevus.com
Find a file
2019-03-23 18:02:57 -04:00
.idea Add another inheritance test 2018-07-15 16:41:43 -04:00
angel_jael remove undeveloped pkgs 2018-12-10 12:45:16 -05:00
jael fix null on if 2019-01-31 16:37:10 -05:00
jael_preprocessor preproc 2.0.1 2018-11-12 17:03:23 -05:00
jael_web Allow nesting classes in render 2019-03-23 18:02:57 -04:00
.gitignore core nearly done 2017-09-29 18:39:37 -04:00
.travis.yml core nearly done 2017-09-29 18:39:37 -04:00
jael.iml Add index-as test 2018-06-27 19:54:43 -04:00
LICENSE Create LICENSE 2017-09-29 23:42:16 -04:00
README.md Update README 2018-06-28 09:02:40 -04:00
travis.sh Working, just need switch 2017-09-30 23:14:44 -04:00

jael

Pub build status

A simple server-side HTML templating engine for Dart.

Though its syntax is but a superset of HTML, it supports features such as:

  • Custom elements
  • Loops
  • Conditionals
  • Template inheritance
  • Block scoping
  • switch syntax
  • Interpolation of any Dart expression

Jael is a good choice for applications of any scale, especially when the development team is small, or the time invested in building an SPA would be too much.

Documentation

Each of the packages within this repository contains some sort of documentation.

Documentation for Jael syntax and directives has been moved to the Angel framework wiki.

This Repository

Within this repository are three packages:

  • package:jael - Contains the Jael parser, AST, and HTML renderer.
  • package:jael_preprocessor - Handles template inheritance, and facilitates the use of "compile-time" constructs.
  • package:build_jael - Uses package:build to compile Jael templates, therefore allowing speedy incremental builds to HTML files.
  • package:angel_jael - Angel support for Jael. Angel contains other facilities to speed up application development, so something like Jael is right at home.