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

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

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

2 रिपॉजिटरी

Awesome GitHub RepositoriesString Compression

Automatic UTF-8 encoding of JavaScript strings before compression with deflate or gzip.

Distinct from Gzip Compression: Distinct from Gzip Compression: focuses on the string-to-binary encoding step, not the gzip format itself.

Explore 2 awesome GitHub repositories matching data & databases · String Compression. Refine with filters or upvote what's useful.

Awesome String Compression GitHub Repositories

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

    nodeca/pako

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

    Pako is a pure JavaScript compression library that ports the C zlib library to JavaScript, providing deflate and gzip compression and decompression capabilities. It runs in both browser and Node.js environments by using typed arrays and universal JavaScript, avoiding platform-specific APIs for cross-platform compatibility. The library handles data through bitwise operations for Huffman coding and LZ77 matching, and automatically encodes string inputs to UTF-8 before compression while decoding them back on decompression. It supports streaming chunk-based processing, allowing incremental data h

    Encode JavaScript strings as UTF-8 before compressing them with deflate or gzip.

    JavaScript
    GitHub पर देखें↗6,081
  • pieroxy/lz-stringpieroxy का अवतार

    pieroxy/lz-string

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

    lz-string एक JavaScript लाइब्रेरी और कमांड-लाइन टूल है, जो Lempel-Ziv एल्गोरिदम का उपयोग करके स्ट्रिंग डेटा को कंप्रेस और डीकंप्रेस करने के लिए है। यह स्टोरेज और नेटवर्क बैंडविड्थ को अनुकूलित करने के लिए स्ट्रिंग्स और फ़ाइलों के आकार को कम करने के लिए उपयोगिताएँ प्रदान करता है। इस प्रोजेक्ट में यह सुनिश्चित करने के लिए विशेष एनकोडर शामिल हैं कि कंप्रेस्ड डेटा विभिन्न ट्रांसपोर्ट लेयर्स के साथ संगत है। इनमें Base64 एनकोडिंग, बढ़ी हुई स्टोरेज डेंसिटी के लिए UTF-16 स्ट्रिंग मैपिंग और वेब पतों में उपयोग के लिए URI-सेफ ट्रांसलेशन के विकल्प शामिल हैं। यह लाइब्रेरी लोकल स्टोरेज ऑप्टिमाइज़ेशन के लिए क्लाइंट-साइड डेटा कंप्रेशन का समर्थन करती है और फ़ाइलों या स्टैंडर्ड इनपुट पर कंप्रेशन और डीकंप्रेशन ऑपरेशन करने के लिए एक कमांड-लाइन इंटरफ़ेस प्रदान करती है।

    Provides a utility for reducing the size of string data using an LZ-based algorithm to optimize storage.

    TypeScript
    GitHub पर देखें↗4,416
  1. Home
  2. Data & Databases
  3. Data Compression Algorithms
  4. Gzip Compression
  5. String Compression

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

  • JavaScriptSpecialized compression of text data specifically for the JavaScript environment. **Distinct from String Compression:** Focuses on JS string handling rather than general UTF-8 binary encoding seen in the parent.
  • LZ-Based String CompressorsCompression tools that specifically utilize Lempel-Ziv algorithms for text reduction. **Distinct from String Compression:** Specifically uses LZ algorithms for strings, unlike the parent's focus on generic UTF-8 encoding steps.