···6677## Example
8899-Smallweb makes creating a new website as simple as running `mkdir` and creating a `main.ts` file.
1010-119Let's say I want to self-host my own drawing app.
12101311```bash
1212+# the app subdomain will be draw.<your-domain>
1413mkdir -p ~/smallweb/draw
1414+1515+# Smallweb apps can be contained in a single file
1516cat <<EOF > ~/smallweb/draw/main.ts
1617import { Excalidraw } from "jsr:@smallweb/excalidraw@0.9.1";
1718