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 🙏

© 2025 – Pkg Stats / Ryan Hefner

mdsecure

v1.0.23

Published

ModderSecure SDK for secure data and backend encryption and decryption. Provides robust AES-256 GCM encryption, secure key management, and premium features for enhanced API security and data privacy.

Readme

MdSecure SDK

MdSecure Logo (Placeholder - you can replace this with your actual logo)

🛡️ Secure Data & Backend Encryption SDK

The MdSecure SDK is a robust Node.js library designed to provide powerful AES-256 GCM encryption and decryption for your backend and API communications. It aims to enhance data privacy, combat web scraping, and fortify your API security posture.


Why MdSecure SDK?

In today's digital landscape, many web services expose their API data in plain JSON formats, easily viewable via browser developer tools. This vulnerability makes them prone to web scraping, data harvesting, and unauthorized access. MdSecure SDK addresses this by ensuring your data remains encrypted and unintelligible when intercepted, safeguarding your valuable information and providing a competitive edge.


✨ Features

  • AES-256 GCM Encryption: Implements the Advanced Encryption Standard with 256-bit key in Galois/Counter Mode, ensuring both confidentiality and integrity of your data.
  • Robust Key Derivation: Securely derives AES keys from your master key using scryptSync, a cryptographic key derivation function designed to be computationally intensive and resistant to brute-force attacks.
  • Structured "msc" Data Format: Encrypts API responses into a custom "msc" (ModderSecure Crypted) JSON-like format, making intercepted data unintelligible and harder to reverse-engineer.
    • Each encrypted response includes a unique request identifier and an is_secured: true flag for clear identification.
  • Explicit Security Validation: Instantly rejects requests/data explicitly marked with is_secured: false or those with malformed "msc" structures, acting as a "fail-fast" security mechanism against unencrypted or tampered inputs.
  • Premium PseudoKey Mechanism: Offers an advanced layer of security and controlled access for premium clients, enabling complex, obfuscated API interactions that are extremely difficult to trace or scrape.
  • Server-Side Execution: All core encryption and decryption processes, along with master key management, occur securely on your server, ensuring sensitive keys never reach the client-side.

🚀 Installation

Add the MdSecure SDK to your Node.js project using npm:

npm install mdsecure