zap 0.1.0
zap: ^0.1.0 copied to clipboard
A reactive web framework built on Dart.
example/main.dart
// 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!);
}