Skip to content
@coregx

coregx

High-Performance Go Libraries — Regex, SQL, HTTP, Messaging. Zero CGO.

coregx

High-Performance Go Libraries
Production-grade. Zero CGO. Minimal dependencies.

Go Version License Zero CGO


Ecosystem

Text Processing

Library Description Version Stars Issues PRs
coregex Regex engine, 3-3000x faster, SIMD
ahocorasick Aho-Corasick multi-pattern matching

Web & HTTP

Library Description Version Stars Issues PRs
fursy HTTP router, type-safe, OpenAPI gen
stream SSE & WebSocket, RFC-compliant

Data & Messaging

Library Description Version Stars Issues PRs
relica Type-safe SQL query builder
pubsub Pub/Sub with DLQ, backoff

Reactive

Library Description Version Stars Issues PRs
signals Reactive state, Angular-inspired

Documents

Library Description Version Stars Issues PRs
gxpdf Pure Go PDF generation & manipulation

Highlights

coregex — 3-3000x Faster Regex

Cross-language benchmarks on 6MB input (source):

Pattern Go stdlib coregex Rust regex vs stdlib
Suffix .*\.txt 233 ms 0.98 ms 1.34 ms 238x
Email 260 ms 1.51 ms 1.40 ms 172x
IP validation 494 ms 3.80 ms 12.28 ms 130x
Multi-literal 1436 ms 12.4 ms 4.91 ms 115x

Beats Rust regex on 3 patterns: ip (3.2x), char_class (1.5x), suffix (1.4x). 13 specialized engines, SIMD acceleration, O(n) guaranteed.

relica — Type-Safe SQL

users := relica.Select("id", "name").
    From("users").
    Where(relica.Eq("active", true)).
    OrderBy("created_at DESC").
    Limit(10)

Advanced features: JOINs, subqueries, CTEs, window functions. 3x faster batch operations.

fursy — Modern HTTP Router

r := fursy.New()
r.Get("/users/{id}", handlers.GetUser)  // Type-safe params
// Auto-generates OpenAPI 3.1 spec

RFC 9457 errors, built-in validation, minimal dependencies.


Philosophy

  • Zero CGO — Simple go build, no C compiler needed
  • Minimal Dependencies — Only what's absolutely necessary
  • Production-Grade — Battle-tested, well-documented, maintained
  • Go 1.25+ — Modern Go features, generics where useful

Powered by coregx

Project Description Using
uawk Ultra AWK interpreter, 19x faster than GoAWK coregex

Contributing

We welcome contributions! See individual repository CONTRIBUTING.md files.

Areas where we need help:

  • Real-world testing and bug reports
  • Documentation and examples
  • Performance optimization ideas

License

All projects are licensed under the MIT License.


Production-grade Go libraries for demanding applications
github.com/coregx

Pinned Loading

  1. coregex coregex Public

    Pure Go production-grade regex engine with SIMD optimizations. Up to 3-3000x+ faster than stdlib.

    Go 66 4

Repositories

Showing 9 of 9 repositories
  • coregex Public

    Pure Go production-grade regex engine with SIMD optimizations. Up to 3-3000x+ faster than stdlib.

    coregx/coregex’s past year of commit activity
    Go 66 MIT 4 6 (1 issue needs help) 0 Updated Jan 16, 2026
  • .github Public

    Organization profile and assets

    coregx/.github’s past year of commit activity
    0 0 0 0 Updated Jan 7, 2026
  • gxpdf Public

    GxPDF - Enterprise-grade PDF library for Go. Table extraction, text parsing, encryption, document creation.

    coregx/gxpdf’s past year of commit activity
    Go 5 MIT 0 0 0 Updated Jan 7, 2026
  • ahocorasick Public

    High-performance Aho-Corasick multi-pattern string matching for Go

    coregx/ahocorasick’s past year of commit activity
    Go 2 MIT 0 0 0 Updated Jan 4, 2026
  • relica Public

    Lightweight, type-safe database query builder for Go with zero production dependencies. Advanced SQL features (JOINs, subqueries, CTEs, window functions), batch operations (3x faster), LRU statement cache (<60ns). Professional API documentation. PostgreSQL, MySQL, SQLite support.

    coregx/relica’s past year of commit activity
    Go 6 MIT 0 0 0 Updated Dec 22, 2025
  • pubsub Public

    Production-ready Pub/Sub library and standalone service for Go. Reliable messaging, DLQ, exponential backoff, clean architecture.

    coregx/pubsub’s past year of commit activity
    Go 1 MIT 0 0 0 Updated Nov 24, 2025
  • fursy Public

    Next-generation HTTP router for Go 1.25+ with type-safe handlers, RFC 9457 errors, and built-in OpenAPI generation. Minimal dependencies, blazing performance.

    coregx/fursy’s past year of commit activity
    Go 0 MIT 0 0 0 Updated Nov 24, 2025
  • stream Public

    Production-ready Server-Sent Events (SSE) and WebSocket for Go 1.25+ | RFC-compliant | Zero dependencies | 84% test coverage

    coregx/stream’s past year of commit activity
    Go 2 MIT 0 0 0 Updated Nov 19, 2025
  • signals Public

    Type-safe reactive state management for Go, inspired by Angular Signals. Zero allocations, thread-safe, production-ready.

    coregx/signals’s past year of commit activity
    Go 7 MIT 0 0 0 Updated Nov 13, 2025

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…