|
|
|
|
|
by pomdtr
492 days ago
|
|
Yeah dokku is an inspiration! The main difference is that smallweb use deno instead of docker for sandboxing apps, and leverages url imports (which can be used to distribute complex apps like VS Code): ``` import { VSCode } from "jsr:@smallweb/vscode@0.1.7" const vscode = new VSCode({
rootDir: Deno.env.get("SMALLWEB_DIR")
}); export default vscode; ``` You can play with a live instance of smallweb at https://demo.smallweb.live |
|
[0]: https://github.com/pomdtr/smallweb-vscode/blob/main/extensio...
[1]: https://github.com/gitpod-io/openvscode-server https://github.com/coder/code-server etc