blob: ec558d70befe204be35a43e53eb541fc0765f2a8 [file] [view] [edit]
`shelf_static` is a `Handler` for the Dart `shelf` package.
[![Build Status](https://github.com/dart-lang/shelf_static/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/shelf_static/actions?query=workflow%3A"Dart+CI"+branch%3Amaster)
### Example
```dart
import 'package:shelf/shelf_io.dart' as io;
import 'package:shelf_static/shelf_static.dart';
void main() {
var handler = createStaticHandler('example/files',
defaultDocument: 'index.html');
io.serve(handler, 'localhost', 8080);
}
```