lucifer 1.0.7 lucifer: ^1.0.7 copied to clipboard
A fast, light-weight web framework to provide a simple way to fulfill the needs of many modern web server these days.
import 'package:lucifer/lucifer.dart';
void main() async {
final app = App();
final port = 3000;
app.get('/', (Req req, Res res) async {
await res.send('Hello Detective');
});
await app.listen(port);
print('Server running at http://${app.host}:${app.port}');
app.checkRoutes();
}