https://github.com/cyntoolkit/pipelab
Your Game's Pipeline, Automated ⚡
https://github.com/cyntoolkit/pipelab
automation construct3 electron game-development godot pipelab steam
Last synced: 8 days ago
JSON representation
Your Game's Pipeline, Automated ⚡
- Host: GitHub
- URL: https://github.com/cyntoolkit/pipelab
- Owner: CynToolkit
- License: other
- Created: 2024-07-17T07:38:17.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2026-05-17T08:03:18.000Z (28 days ago)
- Last Synced: 2026-05-17T09:42:58.998Z (28 days ago)
- Topics: automation, construct3, electron, game-development, godot, pipelab, steam
- Language: TypeScript
- Homepage: https://pipelab.app
- Size: 13.6 MB
- Stars: 14
- Watchers: 1
- Forks: 2
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Pipelab

## What is Pipelab?
A visual tool to create task automation workflows.
## Why use Pipelab?
- Create cross-platform desktop applications
- Deploy to popular platforms (Steam, Itch.io, etc.)
- Automate repetitive tasks
# Getting Started
# Making a release
```
pnpm changeset version
pnpm changeset tag
```
# Architecture
```mermaid
graph TD
classDef pipelab fill:#0096FF,stroke:#333,stroke-width:4px;
classDef todo stroke:#333,stroke-width:4px, stroke-dasharray: 4px;
DesktopApp[Desktop App - Pipelab]
GameBundle[Game Editor output]
subgraph GameEditors
Construct3[Construct 3]
Godot[Godot]
GDevelop[GDevelop]
end
PipelabPlugin[Pipelab Plugin]
SteamPlugin[Steam Plugin]
CoreMessaging[Core Messaging Library]
Renderers[Renderers]
subgraph Runtime
Electron
Tauri
Webview
end
subgraph Platforms
Steam
Itch
Poki
end
Steamworks[steamworks.js Library]
GameEditors -->|Bundles to| GameBundle
GameBundle -->|Is imported into| DesktopApp
GameEditors -->|Includes| PipelabPlugin
PipelabPlugin -->|Is included in| GameBundle
PipelabPlugin -->|Implements| CoreMessaging
SteamPlugin -->|Is included in| GameBundle
SteamPlugin -->|Implements| CoreMessaging
SteamPlugin -->|Uses| Steamworks
CoreMessaging -->|Passes messages to| Renderers
Runtime -->|Is embedded in| Renderers
DesktopApp -->|Packages to| Runtime
Runtime -->|Handles events from| CoreMessaging
DesktopApp -->|Deploys to| Platforms
Platforms -->|Uses| Runtime
class DesktopApp,PipelabPlugin,SteamPlugin,CoreMessaging pipelab;
class SteamPlugin,Godot,GDevelop,Tauri,Webview,Itch,Poki todo;
```
# Development
## Enable source maps
```bash
NODE_OPTIONS=--enable-source-maps pnpm xxx
```