zap 0.2.1 zap: ^0.2.1 copied to clipboard
Zap is a reactive web framework built on Dart. By compiling HTML-like files to Dart components, Zap makes it easy to write efficient web apps.
// zap_dev will create .zap.dart files for each .zap component.
import 'dart:html';
import 'counter.zap.dart';
void main() {
// Create a component and mount it into the document of a webpage.
Counter().create(document.body!);
}