Examples
TIP
Every website hosted under the smallweb.run
domain are open source and can be found on GitHub. For example, the source code of this website is available here.
Smallblog
An easy-to-use blog engine for smallweb created by Tayzen.
Demo
https://smallblog-demo.tayzen.dev
Code
ts
// ~/smallweb/smallblog-demo/main.ts
import { Smallblog } from "jsr:@tayzendev/[email protected]";
export default new Smallblog();
Excalidraw
A port of Excalidraw for smallweb. Files are stored in the app data
folder.
Demo
https://excalidraw.smallweb.run
ts
// ~/smallweb/excalidraw/main.ts
import { Excalidraw } from "jsr:@smallweb/[email protected]";
const excalidraw = new Excalidraw({
rootDir: "./data"
});
export default excalidraw;
VS Code
A port of VS Code for smallweb. Files are stored in the app data
folder.
Demo
https://vscode-demo.smallweb.run
Code
ts
// ~/smallweb/vscode/main.ts
import { VSCode } from "jsr:@smallweb/[email protected]"
const vscode = new VSCode({
rootDir: "./data"
});
export default vscode;