shelf_static 0.2.3+3 copy "shelf_static: ^0.2.3+3" to clipboard
shelf_static: ^0.2.3+3 copied to clipboard

outdatedDart 1 only

Static file server support for Shelf

shelf_static is a Handler for the Dart shelf package.

Build Status Coverage Status

Example #

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);
}