devserver_lib 0.4.2

A zero configuration library for hosting a local folder via https. Refer to 'devserver' for the command line tool.
Documentation
1
2
3
4
5
6
extern crate devserver_lib;

/// Hosts a server at http://localhost:8080 serving whatever folder this is run from.
fn main() {
    devserver_lib::run(&"localhost", 8080, "", false);
}