https://github.com/pomdtr/smallweb-vscode-extension
https://github.com/pomdtr/smallweb-vscode-extension
smallweb-app
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pomdtr/smallweb-vscode-extension
- Owner: pomdtr
- License: mit
- Created: 2025-03-01T16:48:26.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-07T11:49:18.000Z (about 1 year ago)
- Last Synced: 2025-09-16T11:50:36.297Z (9 months ago)
- Language: TypeScript
- Size: 401 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Smallweb

## Configuration
- `smallweb.dirs` - A list of directories that contain smallweb apps.
```json
{
"smallweb.dirs": [
"/Users/pomdtr/smallweb/smallweb.run",
"/Users/pomdtr/smallweb/pomdtr.me",
"/Users/pomdtr/smallweb/pomdtr.smallweb.live"
]
}
```
## Available Commands
- `Open Current App in Browser` - Open the current app in your default browser.
- `Open Current App in Simple Browser` - Open the current app in the simple browser on the side.
- `Copy Current App URL` - Copy the current app's URL to the clipboard.
## URI handlers
You can open a workspace by using the a `vscode://` URI handler:
```bash
# Windows
start vscode://pomdtr.smallweb/openApp?domain=www.smallweb.run
# Mac OS
open vscode://pomdtr.smallweb/openApp?domain=www.smallweb.run
# Linux
xdg-open vscode://pomdtr.smallweb/openApp?domain=www.smallweb.run
```