awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 रिपॉजिटरी

Awesome GitHub RepositoriesObject Key Serialization

Automatic serialization of object keys for data fetching.

Distinguishing note: Focuses on key serialization, not general fetching.

Explore 6 awesome GitHub repositories matching web development · Object Key Serialization. Refine with filters or upvote what's useful.

Awesome Object Key Serialization GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • vercel/swrvercel का अवतार

    vercel/swr

    32,406GitHub पर देखें↗

    SWR is a data fetching library that provides a collection of hooks for managing remote data synchronization, caching, and state updates in web applications. It employs a declarative approach to handle complex network request lifecycles and dependency chains, ensuring that client-side application state remains consistent with server data through automatic revalidation and background updates. The library distinguishes itself through a reactive cache layer that automatically synchronizes local state with remote sources based on component lifecycle events. It features event-driven revalidation, w

    Allows using objects as keys to enable automatic serialization and trigger refreshes.

    TypeScriptcachedatadata-fetching
    GitHub पर देखें↗32,406
  • ljharb/qsljharb का अवतार

    ljharb/qs

    8,940GitHub पर देखें↗

    qs एक क्वेरी स्ट्रिंग पार्सिंग और सीरियलाइज़ेशन लाइब्रेरी है जिसका उपयोग URL क्वेरी स्ट्रिंग्स को JavaScript ऑब्जेक्ट्स में बदलने और ऑब्जेक्ट्स या ऐरे को वापस URI-एन्कोडेड स्ट्रिंग्स में बदलने के लिए किया जाता है। यह एक सुरक्षित पार्सर और URI एन्कोडिंग यूटिलिटी के रूप में कार्य करता है, जिसे विशेष रूप से नेस्टेड डेटा स्ट्रक्चर्स को संभालने के लिए डिज़ाइन किया गया है। यह लाइब्रेरी कॉन्फ़िगर करने योग्य नेस्टिंग शैलियों और ऐरे सीरियलाइज़ेशन फॉर्मेट्स के माध्यम से खुद को अलग बनाती है। यह कस्टम कैरेक्टर एन्कोडिंग लॉजिक के लिए सपोर्ट प्रदान करती है और UTF-8 और ISO-8859-1 के बीच रूपांतरणों को प्रबंधित करने के लिए चार्टसेट सेंटिनल्स का उपयोग करती है। संसाधन की कमी (resource exhaustion) और सुरक्षा कमजोरियों को रोकने के लिए, यह प्रोजेक्ट पैरामीटर-काउंट थ्रॉटलिंग और सख्त पार्सिंग गहराई सीमाओं को लागू करता है। इसमें नल वैल्यू हैंडलिंग, प्रेडिकेट-आधारित की-फ़िल्टरिंग, और डेटा को सीरियलाइज़ करने के तरीके को प्रबंधित करने के लिए प्लगेबल एन्कोडिंग फंक्शन्स जैसी क्षमताएं भी शामिल हैं।

    Transforms JavaScript objects and arrays into URI-encoded query strings for web requests and API calls.

    JavaScript
    GitHub पर देखें↗8,940
  • sindresorhus/query-stringsindresorhus का अवतार

    sindresorhus/query-string

    6,904GitHub पर देखें↗

    This is a suite of JavaScript utilities for the bidirectional conversion and manipulation of URL components and query parameters. It provides a mechanism for parsing URL query strings into data objects and serializing those objects back into URL-encoded strings. The library includes functions for filtering, isolating, and modifying parameters within a full URL or query string. It supports the construction of complete web links by combining base addresses with formatted query parameters. The toolset covers data transformation primitives such as alphabetical key sorting, input sanitization, an

    Transforms flat JavaScript objects into standard URL-encoded query strings.

    JavaScript
    GitHub पर देखें↗6,904
  • messagepack-csharp/messagepack-csharpMessagePack-CSharp का अवतार

    MessagePack-CSharp/MessagePack-CSharp

    6,607GitHub पर देखें↗

    MessagePack-CSharp is a high-performance binary serializer for .NET that converts C# objects to and from the compact MessagePack format. It uses compile-time source generation to produce AOT-safe formatters and resolvers, eliminating runtime reflection and enabling ahead-of-time compilation scenarios. The serializer encodes object fields as integer indices instead of string keys, producing compact binary output with deterministic field ordering, and provides stack-allocated reader and writer structs for direct encoding and decoding of MessagePack primitives without heap allocations. The libra

    Encodes object fields as integer indices for compact binary output with deterministic ordering.

    C#c-sharplz4messagepack
    GitHub पर देखें↗6,607
  • protobuf-net/protobuf-netprotobuf-net का अवतार

    protobuf-net/protobuf-net

    4,930GitHub पर देखें↗

    protobuf-net is a .NET library that serializes and deserializes objects using the Protocol Buffers binary format for efficient data exchange. It provides a code-first gRPC service framework, allowing developers to define service contracts directly from existing C# classes without writing separate .proto files. The library is nullable-aware, encoding null values in collections and nullable scalars using wrapper messages to distinguish null from default zero values, and includes an ahead-of-time serializer generator that compiles serializer code at build time to eliminate runtime code generati

    Marks classes and members with integer keys to specify how objects are serialized into binary protocol buffers.

    C#
    GitHub पर देखें↗4,930
  • pylons/pyramidPylons का अवतार

    Pylons/pyramid

    4,086GitHub पर देखें↗

    Pyramid वेब एप्लिकेशन बनाने के लिए डिज़ाइन किया गया एक Python वेब फ्रेमवर्क और WSGI टूलकिट है। यह एक URL रूटिंग इंजन के रूप में कार्य करता है जो पैटर्न-आधारित रूटिंग और पदानुक्रमित संसाधन ट्री ट्रैवर्सल (hierarchical resource tree traversal) दोनों का उपयोग करके आने वाले HTTP अनुरोधों को विशिष्ट व्यू कॉलएबल्स (view callables) पर मैप करता है। यह फ्रेमवर्क अपने हाइब्रिड डिस्पैच सिस्टम के लिए जाना जाता है, जो डेवलपर्स को रेगुलर एक्सप्रेशन URL मैचिंग को नेस्टेड ऑब्जेक्ट्स के ट्री को नेविगेट करके अनुरोधों को हल करने की क्षमता के साथ संयोजित करने की अनुमति देता है। यह एक लचीला कंपोनेंट आर्किटेक्चर लागू करता है जो एप्लिकेशन रजिस्ट्री प्रबंधन, आस्थगित कॉन्फ़िगरेशन निष्पादन और मूल सोर्स कोड को संशोधित किए बिना व्यू या रूट को ओवरराइड करने की क्षमता का समर्थन करता है। इसकी व्यापक क्षमताओं में साइन्ड कुकीज़ और ACL-आधारित प्राधिकरण के माध्यम से पहचान प्रबंधन, अनुरोध लाइफसाइकिल के लिए एक इवेंट-संचालित समन्वय प्रणाली, और UI अनुवाद के लिए अंतर्राष्ट्रीयकरण सेवाएं शामिल हैं। यह कस्टम सीरियलाइज़र और टेम्प्लेट एकीकरण के माध्यम से कंटेंट रेंडरिंग के लिए उपकरण प्रदान करता है, साथ ही क्रॉस-कटिंग लॉजिक को इंजेक्ट करने के लिए एक मिडलवेयर ट्विन पाइपलाइन भी प्रदान करता है। इस टूलकिट में रूट इंस्पेक्शन, प्रोजेक्ट स्कैफोल्डिंग और एप्लिकेशन डिबगिंग के लिए एक प्रशासनिक कमांड-लाइन इंटरफेस शामिल है।

    Transforms dictionaries or sequences of key-value pairs into UTF-8 encoded URL query strings.

    Pythonpylonspyramidpython
    GitHub पर देखें↗4,086
  1. Home
  2. Web Development
  3. Object Key Serialization

सब-टैग एक्सप्लोर करें

  • Integer Key EncodersEncodes object fields as integer indices instead of string keys for compact binary output. **Distinct from Object Key Serialization:** Distinct from Object Key Serialization: uses integer indices rather than string keys for serialization.
  • Query String EncodingTransforms object properties into URL-encoded key-value pairs joined by ampersands. **Distinct from Object Key Serialization:** Specifically handles the encoding of query strings, whereas the parent is more generic about key serialization.