A professional, high-performance, and beautifully designed online toolbox. Built with a focus on user experience (UX), speed, and developer-friendly architecture.
| Tool Name | Description | Key Features |
|---|---|---|
| Code Playground | Multi-language online development environment | 19+ Languages, 100% Client-side, WASM Runtimes |
| Diff Viewer | Professional text comparison tool | Side-by-side/Inline views, Syntax highlighting |
| Sorting Visualizer | Interactive algorithm visualization | Animations, Step-by-step execution, Stats |
| Base64 Image | Image to Base64 & vice versa | Local processing, Drag-and-drop support |
| Char Encoding | Comprehensive text encoding converter | Multi-encoding, Hex/Binary views |
| ID Card Tool | Identity verification and info utility | Checksum validation, Info extraction |
| Port Query | Network port information service | Wikipedia-backed data, Searchable |
| Whois Domain | RDAP-based domain records query | Real-time lookup, Detailed info |
| Whois IP | RDAP-based IP address query | Geolocation, ISP info |
The Code Playground is our flagship tool, providing a full-featured IDE experience directly in your browser.
Unlike traditional online compilers that rely on backend servers, our playground executes code entirely on the client side using WebAssembly (WASM).
- Zero Latency: Code runs at near-native speeds.
- Privacy First: Your code never leaves your browser.
- Offline Capable: Once loaded, you can code without an internet connection.
| Languages Menu | Python Support |
|---|---|
![]() |
![]() |
| Java Support | C++ Support |
|---|---|
![]() |
![]() |
| Multi-language Editor | Complete Language Support Matrix |
|---|---|
![]() |
![]() |
We support a wide array of programming languages, each running on specialized browser-based engines.
| Category | Languages | Runtime Technology |
|---|---|---|
| Web & Base | HTML5, CSS3, JavaScript, Markdown | Native Browser Engine |
| Scripting | Python 3.11, Ruby 3.2, PHP 8.2 | Pyodide, Ruby.wasm, Php-wasm |
| Systems | C/C++, Rust, Go, Zig | LLVM/Clang WASM, Go WASM |
| Enterprise | Java (8/11/17), C# (.NET) | CheerpJ JVM, Dotnet-WASM |
| Scientific | Octave, R, Fortran | Octave-WASM, WebR |
| Others | Perl, Lua, Cobol, SWI-Prolog, SQLite | WebPerl, Lua-WASM, sql.js |
The sandbox currently supports 19 distinct execution modes:
HTML/CSS/JS Sandbox, Markdown Preview, Python 3, Ruby, PHP, Java (8/11/17), C/C++ (Clang), R, Perl, Go, C#, Zig, Rust, Lua, Fortran, Cobol, Octave, SWI-Prolog, SQLite.
Additionally, the Single-file Editor supports syntax highlighting and code snippets for: JavaScript, TypeScript, JSON, HTML, CSS, Python, Ruby, Perl, Zig, and Lua.
Professional-grade tools for developers and students.
| Diff Viewer | Sorting Visualizer |
|---|---|
![]() |
![]() |
Fast, secure, and intuitive utilities for everyday tasks.
| Base64 Image | Char Encoding | ID Card Tool |
|---|---|---|
![]() |
![]() |
![]() |
The project is built as a Single Page Application (SPA) using Vue 3 and Vite, with automated tool discovery and registration.
tools/
βββ public/ # Static assets
βββ scripts/ # Build scripts (e.g., automated data fetching)
βββ src/
β βββ components/ # Shared UI components (FABs, Switches, Layouts)
β βββ layouts/ # Main layout wrapper
β βββ locales/ # Global i18n messages
β βββ router/ # Dynamic routing logic
β βββ views/
β β βββ HomeView.vue # Tool dashboard
β β βββ tools/ # π Individual tool modules (Self-contained)
β β βββ [tool-id]/
β β βββ index.vue # Tool implementation
β β βββ config.js # Tool metadata (cat, icon, color)
β β βββ locales/ # Tool-specific i18n
β βββ main.js # App entry point
βββ tailwind.config.js # Design system configuration
graph TD
A[App Startup] --> B[Dynamic Router Discovery]
B --> C["import.meta.glob('../views/tools/*/index.vue')"]
C --> D[Generate Routes based on Folder Names]
D --> E[Dashboard / HomeView]
E --> F[Load tool config.js for UI metadata]
F --> G[Render Tool Card]
- Frontend: Vue 3 (Composition API), Vite (Fast HMR).
- Styling: Tailwind CSS (Utility-first, responsive, dark mode).
- State Management: Vue's built-in
refandreactive(Lightweight). - Dynamic Routing: Automatic route generation from directory structure in
src/router/index.js. - Localization:
vue-i18nwith scoped locales per tool. - Build & CI: GitHub Actions for automated deployment to GitHub Pages.
Adding a new tool is easy thanks to the modular design:
- Create Directory:
src/views/tools/my-new-tool/ - Implement Logic: Create
index.vue. UseBackButtonand standard layout. - Configure Metadata: Create
config.js:export default { id: 'my-new-tool', cat: 'utility', // 'network', 'identity', etc. icon: 'sparkles', color: 'from-blue-500 to-indigo-600' }
- Localization: Add
locales/en.jsonandzh.jsoninside the tool folder.
The router and dashboard will automatically detect and register your tool.
# Clone
git clone https://github.com/liudonghua123/tools.git && cd tools
# Install & Run
npm install
npm run devDistributed under the MIT License.
Developed with β€οΈ by liudonghua123











