spry 3.1.1 spry: ^3.1.1 copied to clipboard
Spry is an HTTP middleware framework for Dart to make web applications and APIs server more enjoyable to write.
import 'package:spry/spry.dart';
final app = Application.late();
void main(List<String> args) async {
app.get('/', (request) => 'Hello, Spry!');
app.get('/hello/:name', (request) => 'Hello, ${request.params.get('name')}!');
app.get('/hello/:name/:age', (request) {
final name = request.params.get('name');
final age = request.params.get('age');
return 'Hello, $name! You are $age years old.';
});
app.get(
'/hello',
(request) => {
'/': 'Hello, Spry!',
'/hello': 'Index of hello.',
'/hello/:name': 'Say hello to someone.',
'/hello/:name/:age': 'Say hello to someone with age.',
},
);
app.post('/hello', (request) async => 'Hello, ${await request.text()}!');
await app.run(port: 3000);
print('Listening on http://localhost:3000');
}