lucifer 1.0.7 copy "lucifer: ^1.0.7" to clipboard
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.

example/lucifer_example.dart

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();
}
30
likes
80
pub points
14%
popularity

Publisher

unverified uploader

A fast, light-weight web framework to provide a simple way to fulfill the needs of many modern web server these days.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

cryptography, dart_jsonwebtoken, dotenv, http_parser, http_status_code, logger, mime, mime_type, mustache_template, queue, sanitize_html, uuid

More

Packages that depend on lucifer