A powerful multi-stage text transformation tool built with Qwik, featuring a drag-and-drop interface for creating complex text processing pipelines with regular expressions.
- Multi-stage Pipeline: Create complex text transformations by chaining multiple processing stages
- Drag & Drop Interface: Intuitive reordering of pipeline stages with visual feedback
- Real-time Preview: See transformation results instantly as you build your pipeline
- Regular Expression Support: Use powerful regex patterns or simple text replacements
- Step-by-step Visualization: View intermediate results at each processing stage
- Advanced Options: Configure case sensitivity, word boundaries, and more
- Dark Mode Support: Beautiful UI that adapts to your system preferences
- Framework: Qwik - Resumable JavaScript framework
- Styling: Tailwind CSS v4 with custom theming
- Icons: Heroicons via Tailwind CSS Icons
- Type Safety: TypeScript for robust development
- Build Tool: Vite for fast development and optimized builds
- Node.js LTS
- pnpm (recommended) or npm
- Enter Text: Paste or type your text in the input area
- Add Stages: Click "Add Stage" to create new processing steps
- Configure: Set up patterns, replacements, and options for each stage
- Reorder: Drag and drop stages to change processing order
- Preview: See real-time results and intermediate steps
- Export: Copy the final output or individual stage results
src/
├── components/
│ ├── pipeline/ # Pipeline management (drag & drop, stage UI, move buttons, stability)
│ ├── text-processor/ # Text input/output (diff viewer, pipeline result rendering)
│ ├── starter/ # Qwik starter components
│ └── diff/ # Diff display components (ON/OFF toggle, diff visualization)
├── routes/
│ ├── index.tsx # Landing page
│ └── text-processor/ # Main application route
├── types/
│ ├── pipeline.ts # Pipeline types
│ └── diff.ts # Diff types (DiffSegment, DiffResult, enums)
└── utils/
├── text-processor.ts # Core text processing logic (regex, pipeline execution)
├── drag-drop.ts # Drag and drop order/update helpers
└── diff-calculator.ts # jsdiff wrapper, diff calculation utilities
This project is open source and available under the AGPL License.
Qwikで構築された強力なマルチステージテキスト変換ツールです。正規表現を使用した複雑なテキスト処理パイプラインを作成するためのドラッグ&ドロップインターフェースを備えています。
- マルチステージパイプライン: 複数の処理ステージを連鎖させて複雑なテキスト変換を作成
- ドラッグ&ドロップインターフェース: 視覚的フィードバック付きでパイプラインステージを直感的に並び替え
- リアルタイムプレビュー: パイプラインの構築中に変換結果を即座に確認
- 正規表現サポート: 強力な正規表現パターンまたはシンプルなテキスト置換を使用
- ステップバイステップ可視化: 各処理ステージでの中間結果を表示
- 高度なオプション: 大文字小文字の区別、単語境界などを設定可能
- ダークモードサポート: システム設定に適応する美しいUI
- フレームワーク: Qwik - 再開可能なJavaScriptフレームワーク
- スタイリング: Tailwind CSS v4 とカスタムテーマ
- アイコン: Tailwind CSS Icons経由のHeroicons
- 型安全性: 堅牢な開発のためのTypeScript
- ビルドツール: 高速開発と最適化されたビルドのためのVite
- Node.js LTS
- pnpm(推奨)またはnpm
- テキスト入力: 入力エリアにテキストを貼り付けまたは入力
- ステージ追加: 「Add Stage」をクリックして新しい処理ステップを作成
- 設定: 各ステージのパターン、置換、オプションを設定
- 並び替え: ステージをドラッグ&ドロップして処理順序を変更
- プレビュー: リアルタイムの結果と中間ステップを確認
- エクスポート: 最終出力または個別のステージ結果をコピー
src/
├── components/
│ ├── pipeline/ # Pipeline management (drag & drop, stage UI, move buttons, stability)
│ ├── text-processor/ # Text input/output (diff viewer, pipeline result rendering)
│ ├── starter/ # Qwik starter components
│ └── diff/ # Diff display components (ON/OFF toggle, diff visualization)
├── routes/
│ ├── index.tsx # Landing page
│ └── text-processor/ # Main application route
├── types/
│ ├── pipeline.ts # Pipeline types
│ └── diff.ts # Diff types (DiffSegment, DiffResult, enums)
└── utils/
├── text-processor.ts # Core text processing logic (regex, pipeline execution)
├── drag-drop.ts # Drag and drop order/update helpers
└── diff-calculator.ts # jsdiff wrapper, diff calculation utilities
このプロジェクトはオープンソースで、AGPLライセンスの下で利用可能です。
