npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

secure-storage-wasm

v0.1.10

Published

![Rust](https://img.shields.io/badge/Rust-%23dea584?style=for-the-badge&logo=rust&logoColor=white) ![WebAssembly](https://img.shields.io/badge/WebAssembly-%237864BE?style=for-the-badge&logo=webassembly&logoColor=white) ![ChaCha20-Poly1305](https://img.shi

Readme

Secure Storage 🔒

Rust WebAssembly ChaCha20-Poly1305

🚀 Overview

Secure Storage 🔒 is a WebAssembly (WASM) module written in Rust that provides secure, high-performance encryption and decryption capabilities using the ChaCha20-Poly1305 AEAD (Authenticated Encryption with Associated Data) algorithm. This project is ideal for securely storing and transmitting sensitive data in web applications.

✨ Features

  1. End-to-end Encryption - Uses the ChaCha20-Poly1305 cipher for secure data encryption.
  2. WASM Powered - High-performance cryptographic operations in the browser.
  3. Lightweight & Fast - Rust’s efficiency ensures minimal overhead.
  4. Authenticated Encryption - Ensures data integrity and authenticity.

Configuration

To include wasm into your application, Based on the bundler

Vite

    // To configure vite with wasm
    import wasm from "vite-plugin-wasm";
    
    // https://vite.dev/config/
    export default defineConfig({
        plugins: [react(), wasm()],
    })

🛠️ Usage

    import { getItem, setItem, clear } from "secure-storage";
    
    // To store data with encryption
    setItem("key", "data")
    // To store raw data (without encryption)
    setItem("key", "data", true)
    getItem("key") // -> string

📚 API Reference

set_item(key: string, data: string, encrypted?: boolean | null) => void

@default: encrypted = true Generates and sets the encrypted/raw data in the localstorage based on encrypted boolean

get_item(key: string) => string

Gets the decrypted data in the localstorage

remove(key: string) => void

Removes the key from localstorage

clear() => void

Clears the localstorage

✔️ Compatible web engine

Here is the list of tested web engine,

  1. Chromium
  2. Safari
  3. Gecko

✔️ Supported frameworks

  1. Vite
  2. Nextjs
  3. Vuejs
  4. create-react-route

And few more testing in progress.

🤝 Contributing

We welcome contributions! Feel free to submit issues, feature requests, or pull requests.

  1. Fork the repo
  2. Create a new branch: git checkout -b feature-branch
  3. Commit changes: git commit -m "Add a new feature"
  4. Push to the branch: git push origin feature-branch
  5. Create a Pull Request

📜 License

This project is licensed under the MIT License.

🙌 Acknowledgments

Special thanks to the Rust and WebAssembly communities for their amazing tools and documentation!


🚀 Secure your data with Secure Storage 🔒 today!