penguin 0.1.4

Dev server with auto-reload, static file server, proxy support, and more. Language and framework agnostic. This is the library crate, but Penguin exists as a CLI app, too.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "files": ["src/browser.ts"],
    "compilerOptions": {
        "outFile": "src/generated/browser.js",
        "target": "ES6",
        "skipLibCheck": true,

        // I would prefer most of these to be warnings, but errors are better
        // than nothing.
        "strict": true,
        "noImplicitReturns": true,
        "noFallthroughCasesInSwitch": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,
    }
}