devserver_lib 0.1.0

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
7
extern crate devserver_lib;

/// Hosts a server at https://localhost:8000 serving whatever folder this is run from.
/// The server has a hardcoded self-signed certificate, so no browser will trust it.
fn main() {
    devserver_lib::run();
}