Install this module
Click Install in Clyde above — Clyde opens and installs the module automatically via clyde://install/official/dev
Download JSON and drop dev.json into ~/.clyde/modules/, then run reload modules in Clyde.
5 commands
Launch Terminal.app
open -a TerminalLaunch Visual Studio Code
open -a 'Visual Studio Code'Open GitHub in browser
https://github.comOpen localhost:3000 in browser
http://localhost:3000Open localhost:8080 in browser
http://localhost:8080Raw JSON
{
"module": "dev",
"displayName": "Dev Tools",
"description": "Open your dev tools, editors, and local servers fast.",
"color": "blue",
"icon": "terminal",
"commands": [
{
"name": "Open Terminal",
"keywords": [
"terminal",
"shell",
"bash",
"zsh"
],
"executor": "shell",
"target": "open -a Terminal",
"description": "Launch Terminal.app"
},
{
"name": "Open VS Code",
"keywords": [
"vscode",
"code",
"editor"
],
"executor": "shell",
"target": "open -a 'Visual Studio Code'",
"description": "Launch Visual Studio Code"
},
{
"name": "Open GitHub",
"keywords": [
"github",
"git",
"repo"
],
"executor": "urlScheme",
"target": "https://github.com",
"description": "Open GitHub in browser"
},
{
"name": "Localhost 3000",
"keywords": [
"localhost",
"local",
"dev server",
"3000"
],
"executor": "urlScheme",
"target": "http://localhost:3000",
"description": "Open localhost:3000 in browser"
},
{
"name": "Localhost 8080",
"keywords": [
"localhost",
"local",
"8080"
],
"executor": "urlScheme",
"target": "http://localhost:8080",
"description": "Open localhost:8080 in browser"
}
],
"source": "official"
}