winter 0.0.7 winter: ^0.0.7 copied to clipboard
This project is designed to create server side apps the simplest way possible, and reduce the learning curve in backend development.
import 'package:winter/winter.dart';
void main() => Winter.run(
router:
ServeRouter((request) => ResponseEntity.ok(body: 'Hello world!!!')),
);