awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
Back to mitchellh/mapstructure

Open-source alternatives to Mapstructure

30 open-source projects similar to mitchellh/mapstructure, ranked by how many features they have in common. Compare stars, activity and what each one does to find the best Mapstructure alternative.

  • kelseyhightower/envconfigAvatar kelseyhightower

    kelseyhightower/envconfig

    5,404Vezi pe GitHub↗

    envconfig is a Go configuration decoder and environment variable mapper that deserializes environment variables into structured Go data types. It provides tools for validating mandatory fields and ensuring application configuration adheres to the external configuration patterns of twelve-factor app compliance. The library features a help generator that creates formatted usage text based on struct definitions to describe expected environment variables. It also includes a validation tool capable of detecting unused environment variables that match a specific prefix but do not correspond to any

    Go
    Vezi pe GitHub↗5,404
  • alecthomas/kongAvatar alecthomas

    alecthomas/kong

    2,976Vezi pe GitHub↗

    Kong is a declarative command line interface framework and parser for Go. It maps flags and positional arguments directly into typed Go structures using struct tags, allowing developers to define terminal interfaces through data models rather than manual parsing logic. The project functions as a configuration mapper that populates Go structures from a combination of command-line arguments, environment variables, and JSON files. It distinguishes itself by providing a dependency injection container to pass external services into command handlers and a plugin architecture for dynamic command reg

    Gocommand-linecommandsflags
    Vezi pe GitHub↗2,976
  • knadh/koanfAvatar knadh

    knadh/koanf

    3,871Vezi pe GitHub↗

    koanf is a configuration management library for Go designed to load, merge, and unmarshal application settings from multiple sources into structured objects. It functions as a multi-source config loader that aggregates data from environment variables, files, and remote providers into a single unified map. The system utilizes a pluggable architecture for parsing and data abstraction, allowing it to transform bytes from formats such as JSON, YAML, and TOML into nested maps. It supports dynamic configuration watching to monitor external sources and trigger automatic reloads when settings change.

    Goconfigconfig-loaderconfiguration
    Vezi pe GitHub↗3,871

Căutare AI

Explorează mai multe repository-uri excelente

Descrie ce ai nevoie în limbaj simplu — AI-ul sortează mii de proiecte open source selectate în funcție de relevanță.

Find more with AI search
  • caarlos0/envAvatar caarlos0

    caarlos0/env

    6,004Vezi pe GitHub↗

    env is a Go library that reads environment variables and populates the fields of a Go struct according to tag directives. It uses reflection to iterate over struct types and tags at runtime, mapping environment variable names to struct fields and applying parsing behavior defined in struct tags. The library supports required field validation, returning errors when marked fields are missing or empty after parsing. It also provides default value fallback from struct tags when environment variables are not set, environment variable expansion that recursively substitutes references within values,

    Goconfigconfigurationenvironment
    Vezi pe GitHub↗6,004
  • go-validator/validatorAvatar go-validator

    go-validator/validator

    1,335Vezi pe GitHub↗

    This project is a data validation framework for the Go programming language that enforces integrity by applying declarative constraints to struct fields. It utilizes reflection to inspect data structures at runtime, mapping field-level requirements defined in struct tags to specific validation logic. The library distinguishes itself through its ability to handle complex object graphs by recursively traversing nested structures and slices. It supports context-aware validation, allowing developers to switch between different rule sets for the same data structure based on application state or sp

    Go
    Vezi pe GitHub↗1,335
  • lightbend/configAvatar lightbend

    lightbend/config

    6,309Vezi pe GitHub↗

    This is a configuration library for JVM applications that parses HOCON, JSON, and Java properties files into an immutable tree structure. It resolves ${...} placeholders by traversing the configuration tree and falling back to environment variables and system properties, and validates loaded configurations against a reference schema. The library loads configuration from classpath resources, files, URLs, system properties, and environment variables, merging them with priority-based override semantics. It provides typed value access with automatic type coercion, supports dot-path navigation,

    Javaconfiguration-libraryhoconsupported
    Vezi pe GitHub↗6,309
  • thoas/go-funkAvatar thoas

    thoas/go-funk

    4,939Vezi pe GitHub↗

    go-funk is a functional programming library for Go that provides a set of helper functions to transform and query slices and maps. It enables a declarative coding style for collection manipulation and data transformation, reducing the need for repetitive manual loops. The library implements higher-order functions for common operations, including mapping, filtering, and searching through data structures using predicates and callbacks. It includes utilities for detecting element existence and finding common elements between collections. These capabilities are supported through generic-based ty

    Go
    Vezi pe GitHub↗4,939
  • davidanson/markdownlintAvatar DavidAnson

    DavidAnson/markdownlint

    5,855Vezi pe GitHub↗
    JavaScriptcommonmarklintmarkdown
    Vezi pe GitHub↗5,855
  • msgspec/msgspecAvatar msgspec

    msgspec/msgspec

    3,821Vezi pe GitHub↗

    msgspec is a high-performance data modeling, serialization, and schema validation toolkit for Python. It serves as a type-safe serialization framework that integrates schema enforcement and data parsing into a single pass, functioning as both a data serialization library and a schema validation system based on standard Python type annotations. The project distinguishes itself through high-performance structural primitives, including compilation-based routine generation and zero-copy buffer parsing. It optimizes memory usage via garbage collection-aware layouts and reduces processing overhead

    Pythondeserializationjsonjson-schema
    Vezi pe GitHub↗3,821
  • yargs/yargsAvatar yargs

    yargs/yargs

    11,492Vezi pe GitHub↗

    yargs is a command-line interface framework and argument parser for Node.js. It translates raw command-line strings into structured JavaScript objects, providing a toolkit for building terminal applications with nested sub-commands, dedicated handlers, and a structured user interface. The framework distinguishes itself through automated help text generation, which constructs formatted usage menus and instructions based on registered metadata. It also provides shell completion generation for Bash and Zsh and uses string-distance algorithms to offer typo correction suggestions when invalid inpu

    JavaScript
    Vezi pe GitHub↗11,492
  • google/gsonAvatar google

    google/gson

    24,357Vezi pe GitHub↗

    Gson is a Java library designed for the serialization and deserialization of objects into structured text formats. It functions as a reflection-based data mapper, inspecting class structures at runtime to automatically convert memory-resident objects into data representations and reconstruct them back into typed language objects. The library distinguishes itself through a modular type-adapter pattern that allows for custom conversion rules for complex or nested structures. It also provides robust support for production environments by generating build-time metadata and configuration rules, wh

    Java
    Vezi pe GitHub↗24,357
  • jinzhu/copierAvatar jinzhu

    jinzhu/copier

    6,172Vezi pe GitHub↗

    Copier is a Go library that deep copies data between structs, maps, and slices using reflection-based field mapping and struct tag controls. At its core, it automatically transfers values by matching source and destination fields by name, type, and methods, creating fully independent copies of nested data structures to prevent shared references and unintended mutations. The library distinguishes itself through tag-driven copy rules that give developers fine-grained control over the copying process. Struct tags can enforce mandatory field copying, exclude specific fields from transfer, or map

    Gocopygogolang
    Vezi pe GitHub↗6,172
  • marshmallow-code/marshmallowAvatar marshmallow-code

    marshmallow-code/marshmallow

    7,239Vezi pe GitHub↗

    Marshmallow is a Python data serialization library and validation framework. It functions as a bridge that transforms complex application objects into primitive data types for storage or network transmission and vice versa. The library utilizes a schema-based approach to validate that incoming data conforms to specific types and constraints. It employs a two-way transformation pipeline consisting of separate load and dump phases to handle deserialization and serialization. The framework supports class-based schema definitions with declarative field validation and recursive schema nesting for

    Pythondeserializationmarshallingpython
    Vezi pe GitHub↗7,239
  • ghostiam/binstructG

    ghostiam/binstruct

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • microsoft/bondAvatar microsoft

    microsoft/bond

    2,625Vezi pe GitHub↗

    Bond was a cross-platform framework for working with schematized data. The open-source project ended on March 31, 2025.

    C++
    Vezi pe GitHub↗2,625
  • python-rapidjson/python-rapidjsonAvatar python-rapidjson

    python-rapidjson/python-rapidjson

    532Vezi pe GitHub↗

    Python wrapper around rapidjson

    C++
    Vezi pe GitHub↗532
  • google/flatbuffersAvatar google

    google/flatbuffers

    25,558Vezi pe GitHub↗

    FlatBuffers is a cross-platform serialization library designed for performance-critical applications that require efficient, zero-copy data access. By organizing data in a structured binary format, it allows applications to read and write complex data structures directly from memory-mapped buffers without the need for intermediate parsing or temporary object allocation. The project distinguishes itself through a schema-driven approach that balances high-performance access with long-term data evolution. It utilizes a unique memory layout featuring relative offsets and inline fixed-size structu

    C++cc-plus-plusc-sharp
    Vezi pe GitHub↗25,558
  • tuvistavie/structomapT

    tuvistavie/structomap

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • vimeda/pletterV

    vimeda/pletter

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • jszwec/csvutilAvatar jszwec

    jszwec/csvutil

    1,035Vezi pe GitHub↗

    csvutil provides fast and idiomatic mapping between CSV and Go (golang) values.

    Gocsvcsv-parsercsvutil
    Vezi pe GitHub↗1,035
  • json-iterator/goAvatar json-iterator

    json-iterator/go

    13,891Vezi pe GitHub↗

    This project is a high-performance JSON library for Go, serving as a replacement for the standard encoding/json package. It provides a serialization engine for encoding and decoding data structures, alongside a schemaless parser for extracting specific values from JSON blobs using paths. The library distinguishes itself through a focus on reducing CPU and memory overhead. It implements a high-performance encoder that utilizes buffer reuse and reduced float precision to increase data throughput. Broad capability areas include data serialization, high-performance JSON processing, and schema-le

    Godeserializationgogolang
    Vezi pe GitHub↗13,891
  • promonlogicalis/asn1P

    PromonLogicalis/asn1

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • glycerine/bambamG

    glycerine/bambam

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • gogo/protobufAvatar gogo

    gogo/protobuf

    5,669Vezi pe GitHub↗

    This project is a Protocol Buffers Go compiler and code generation framework that translates schema definitions into optimized Go structures and reflection-free serialization methods. It includes a gRPC service generator for producing client and server communication code and a serialization performance toolkit for generating automated benchmarks and test suites. The framework features a plugin-based system for transforming data definitions into source code with custom field mapping and struct tag injection. It allows for custom type mapping and struct type overriding to link data fields to sp

    Gogogolanggrpc
    Vezi pe GitHub↗5,669
  • golang/protobufAvatar golang

    golang/protobuf

    10,074Vezi pe GitHub↗

    This project is a Protocol Buffers implementation for Go, providing a binary serialization framework to convert native data structures into a compact binary format for efficient network transmission and storage. It functions as a language bindings generator, utilizing a compiler plugin to create Go source code from platform-neutral protocol buffer definitions. The implementation includes a JSON data mapper that transforms structured binary messages into JSON format to facilitate compatibility with web services and external APIs. It also enables cross-language data exchange by using a common s

    Go
    Vezi pe GitHub↗10,074
  • pascaldekloe/colferP

    pascaldekloe/colfer

    0Vezi pe GitHub↗

    Colfer is a binary serialization format optimized for speed and size.

    Vezi pe GitHub↗0
  • 32leaves/bel3

    32leaves/bel

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • glycerine/go-capnprotoG

    glycerine/go-capnproto

    0Vezi pe GitHub↗
    Vezi pe GitHub↗0
  • protocolbuffers/protobufAvatar protocolbuffers

    protocolbuffers/protobuf

    71,359Vezi pe GitHub↗

    Protocol Buffers is a language-neutral, platform-agnostic mechanism for serializing structured data. It provides a schema-driven toolchain that compiles declarative data definitions into type-safe source code, enabling consistent communication and strongly typed API contracts across services written in different programming languages. The project distinguishes itself through a highly efficient binary wire format that utilizes tag-based encoding and variable-width integer compression to minimize payload size and processing overhead. It supports robust evolutionary schema management, allowing d

    C++marshallingprotobufprotobuf-runtime
    Vezi pe GitHub↗71,359
  • ugorji/goAvatar ugorji

    ugorji/go

    1,952Vezi pe GitHub↗

    idiomatic codec and rpc lib for msgpack, cbor, json, etc. msgpack.orgGo

    Go
    Vezi pe GitHub↗1,952