UtilPlex is a modern Angular 20.1.x web application providing essential developer utilities for code formatting, data conversion, encoding, diff comparison, and time zone management. Built with standalone components, signals, and server-side rendering (SSR), UtilPlex offers a comprehensive suite of tools to streamline your development workflow.
- SQL Formatter - Beautify SQL queries with proper indentation and formatting
- JSON Formatter - Format and minify JSON data with advanced prettification
- CSS Formatter - Clean and organize CSS code with professional formatting
- JavaScript Formatter - Beautify JavaScript code with modern syntax support
- TypeScript Formatter - Format and beautify TypeScript code with proper indentation and type definitions
- SCSS Formatter - Format and beautify SCSS/Sass code with proper indentation and structure
- JSON to YAML Converter - Convert JSON data to YAML format while preserving structure
- Base64 Encoder/Decoder - Encode and decode data in Base64 format with ASCII/UTF-8 support
- GUID Generator - Generate UUIDs with multiple format options (standard, compact, uppercase)
- Lorem Ipsum Generator - Create placeholder text with customizable word, sentence, or paragraph output
- File Diff Checker - Compare two files or text blocks and highlight the differences between them with side-by-side comparison
- Time Zone Converter - Convert times between global time zones with daylight saving awareness
All tools feature:
- CodeMirror editor integration with syntax highlighting
- Custom Dracula theme for optimal readability
- Copy/paste functionality
- Side-by-side diff comparison for text analysis
- Responsive design for mobile compatibility
- Comprehensive error handling
- Node.js (v20 or higher)
- Angular CLI (v20 or higher)
- npm or yarn package manager
-
Clone the UtilPlex repository:
git clone https://github.com/timothydodd/utilplex.git cd utilplex
-
Install dependencies:
npm install
-
Start the development server:
npm start
-
Open your browser and navigate to
http://localhost:4200
npm start
- Start development servernpm run build
- Production buildnpm run build:ci
- CI production buildnpm test
- Run unit testsnpm run lint
- Run ESLintnpm run serve:ssr:utilplex
- Serve SSR build
src/app/
├── _services/ # Global services and routing
├── formatters/ # Code formatting utilities
├── converters/ # Data conversion tools
├── encoders/ # Encoding/decoding tools
├── generators/ # Content generation utilities
├── diff/ # File and text comparison tools
├── time/ # Time zone tools
├── codemirror/ # CodeMirror editor configuration and themes
└── components/ # Shared UI components
UtilPlex uses a modern Angular architecture with:
- Service Provider Pattern - Abstract base classes with concrete implementations
- Signal-Based State Management - Modern reactive state management
- Standalone Components - No NgModule dependencies
- Dynamic Routing - Centralized route management with lazy loading
- SSR Support - Server-side rendering for optimal performance
- Formatters:
FormatViewService
(abstract) →SqlFormatProvider
,JsonFormatProvider
,CssFormatProvider
,JavascriptFormatProvider
,TypescriptFormatProvider
,ScssFormatProvider
- Converters:
ConverterServiceBase
(abstract) →JsonToYamlConverter
- Generators:
GeneratorServiceBase
(abstract) →GuidGeneratorService
,LoremIpsumGeneratorService
- Diff Tools:
DiffService
for file and text comparison functionality - Generic Views: Reusable components that work with any service implementation
This project is licensed under the MIT License.