1.0.12 • Published 6 months ago

hashless v1.0.12

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

🔐 Hashless

Hashless is a lightweight and efficient hashing & verification library optimized for serverless environments like AWS Lambda and Cloudflare Workers.


📑 Table of Contents

  1. Overview
  2. Technologies
  3. Packages & Libraries Used
  4. Getting Started
  5. Setup
  6. Features
  7. Demo & Screenshots
  8. Acknowledgments
  9. License

🌟 Overview

Hashless provides a simple and fast hashing and verification solution, making it ideal for serverless applications where performance and efficiency are crucial.


💻 Technologies

This project is built with:

TechnologyDescription
TypeScriptEnsures type safety and performance optimization

📦 Packages / Libraries Used

Package / LibraryPurpose
CryptoProvides hashing utilities

🚀 Getting Started

  1. Install any IDEs (For eg. Visual Studio Code)
  2. Install Node.js or Bun.js

⚙️ Setup

  1. Clone the repositry
    git clone https://GitHub.com/Jenil-Desai/Hashless.git
  2. Go to project directory
    cd Hashless
  3. Install Dependencies
    bun install
  4. Build the package
    bun run build

🎯 Features

  1. Hash String - Securely hash any string input.

  2. Verify String - Validate hashed values against their original input.


🔗 Demo & Screenshots

  • Example -

    import { hashString, verifyString } from "hashless";
    
    async function main() {
      // Original string
      let originalString: string = "some important texts";
      console.log(`Original String: ${originalString}`);
    
      // Hash the original string
      let hashedString: string = await hashString(originalString);
      console.log(`Hashed String: ${hashedString}`);
    
      // Verify the hashed string against the original string
      let isVerified: boolean = await verifyString(originalString, hashedString);
      console.log(`Verification Result: ${isVerified}`);
    }
    
    main().catch(console.error);
  • Download Now From npm


🙏 Acknowledgments

Special thanks to the following resource:

  1. Function Agents - Blog by Groff.dev

📜 License

This project is licensed under the MIT License. See the LICENSE file for details.


🔐 Hash smarter, verify faster with Hashless!

1.0.12

6 months ago

1.0.11

6 months ago

1.0.10

6 months ago

1.0.9

6 months ago

1.0.8

6 months ago

1.0.7

6 months ago

1.0.6

6 months ago

1.0.5

6 months ago

1.0.4

6 months ago

1.0.3

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago