About
Jael3 is a simple, yet powerful, server-side HTML templating engine for Dart. Although it can be used in any application, it comes with first-class support for the Angel3 framework.
Though its syntax is but a superset of HTML, it supports features such as:
Custom elements
Loops
Conditionals
Template inheritance
Block scoping
switch
syntaxInterpolation of any Dart expression
Small Example
The typical flow of a full-stack Dart application is to develop two separate apps:
The server
The client, an entire SPA
However, the truth is, many projects will never reach great scale, or are not extensive Web applications, and thus do not need the added complexity of an SPA. In such a case, creating an SPA will consume much excess time.
Jael allows developers to create a frontend for their application without having to worry about push state, increased development time, or having to find complex ways to achieve "server-side rendering."
Rather than forcing you to learn an entire DSL, Jael's syntax is one you already know - HTML. All directives take the form of HTML elements, and are applied either by the preprocessor or at runtime. Jael's AST is simple to patch, so it is relatively straightforward to patch it to add new features.
Jael can easily be used in any application with the following two packages:
package:jael3
package:jael3_preprocessor
However, Angel3 users only need install package:angel3_jael
to include templating in their server-side applications. One of Angel3's goals is to make Web development faster, and having a tool like Jael at its disposal only brings that goal even closer to fruition.
Last updated