Skip to content

A flexible tool for parallel type checking of Go files, with dynamic CLI commands and extensibility for managing codebases efficiently.

License

Notifications You must be signed in to change notification settings

faelmori/gastype

Repository files navigation

Gastype Banner


A flexible tool for parallel type checking of Go files, with dynamic CLI commands and extensibility for managing codebases efficiently.


Table of Contents

  1. About the Project
  2. Features
  3. Installation
  4. Usage
  5. Configuration
  6. Roadmap
  7. Contributing
  8. Contact

About the Project

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.

Features

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.

Installation

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)

Usage

CLI

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

Usage Examples

1. Check Go Files for Type Errors

gastype check \
--dir ./example \
--workers 4 \
--output type_check_results.json

Output:

{
  "package": "example_pkg",
  "status": "Success ✅",
  "error": ""
}

2. Watch a Directory for File Changes

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.

Description of Commands and Flags

  • --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.

Configuration

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"
}

Roadmap

🛠️ 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.

Contributing

Contributions are welcome! Feel free to open issues or submit pull requests. Check out the Contributing Guide for more details.


Contact

💌 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!

About

A flexible tool for parallel type checking of Go files, with dynamic CLI commands and extensibility for managing codebases efficiently.

Resources

License

Stars

Watchers

Forks

Packages

No packages published