An Electron-based Minecraft Launcher.
- Node.js
- npm
npm installnpm run devnpm run build # Build for current platform
npm run build:win # Build for Windows
npm run build:mac # Build for macOS
npm run build:linux # Build for LinuxBase URL: http://localhost:34501/
Execute Command
- Endpoint:
/api/execute - Method:
POST - Content-Type:
application/json
{
"command": "string"
}Response:
{
"success": boolean,
"stdout": "string",
"stderr": "string",
"error": "string | null"
}- Endpoint:
/api/jfs/ - Method:
POST
See scapi.md for full API documentation.
├── main.js # Electron main process
├── src/ # Frontend assets
│ ├── index.html
│ ├── main.html
│ └── assets/
└── package.json