A flexible tool for parallel type checking of Go files, with dynamic CLI commands and extensibility for managing codebases efficiently.
Gastype is a Go-based utility designed to analyze and validate codebases efficiently, with parallel type-checking capabilities. It provides developers with a streamlined way to ensure quality across Go projects, leveraging dynamic CLI commands and extensible functionalities.
Why Gastype?
- 🚀 Parallel Execution: Maximizes efficiency by processing multiple files at once.
- ⚙️ Configurable: Highly customizable for various workflows.
- 📂 Clean and Modular: Designed to be easy to maintain and extend.
⚡ Parallel Type Checking:
- Execute checks across multiple Go files simultaneously.
- Provides detailed feedback on errors and their locations.
💻 Flexible CLI:
- User-friendly CLI for managing type checks and file monitoring.
- Extensible commands for diverse use cases.
🔒 Resilient and Safe:
- Validates file structures before processing.
- Handles errors gracefully with detailed logging.
Requirements:
- Go version 1.19 or later.
# Clone this repository
git clone https://github.com/faelmori/gastype.git
# Navigate to the project directory
cd gastype
# Build the binary using make
make build
# Install the binary using make
make install
# (Optional) Add the binary to the PATH to use it globally
export PATH=$PATH:$(pwd)
Here are some examples of commands you can execute with gastype:
# Perform type-checking in a directory
gastype check -d ./example -w 4 -o type_check_results.json
# Monitor Go files for changes and trigger type-checks
gastype watch -d ./example -w 4 -o type_check_results.json
gastype check \
--dir ./example \
--workers 4 \
--output type_check_results.json
Output:
{
"package": "example_pkg",
"status": "Success ✅",
"error": ""
}
gastype watch \
--dir ./example \
--workers 4 \
--output type_check_results.json \
--email [email protected] \
--token "secure-token"
Output:
Watching directory ./example...
File changes detected, type checking initiated.
--dir
: Specifies the directory containing Go files.--workers
: Number of workers for parallel processing.--output
: Output file for type-check results.--email
: Email address for notifications.--token
: Token for email notifications.
Gastype supports dynamic configurations via a JSON file, which allows users to set default values for directories, workers, and output files.
Example Configuration:
{
"dir": "./example",
"workers": 4,
"outputFile": "type_check_results.json",
"email": "[email protected]",
"token": "123456"
}
🛠️ Planned Enhancements:
- Extend type-checking capabilities for advanced validation.
- Add support for custom file watchers and notifications.
- Improve the documentation and provide more practical examples.
Contributions are welcome! Feel free to open issues or submit pull requests. Check out the Contributing Guide for more details.
💌 Developer:
Rafael Mori
💼 Follow me on GitHub
I’m open to new collaborations and feedback. Don’t hesitate to reach out if you find this project interesting!