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

@fusedb/core

v0.0.1

Published

A fast, driver-based database engine with unified API, middleware support, and zero hassle.

Downloads

5

Readme

⚡ FUSE - Fast Unified Storage Engine

npm i @fushdb/core npm license FUSE ⚡

FUSE is a modular, high-performance database interface designed for simplicity, flexibility, and speed. It acts as a unified abstraction layer over a variety of storage drivers-from in-memory to file-based to full SQL/NoSQL backends-so your code stays consistent regardless of where your data lives.

⚠️ Warning: FUSE is currently in testing phase (Here be dragons)


✨ Key Features

  • Universal API - A single interface for all your storage needs (JSON, SQLite, PostgreSQL, MongoDB, LocalStorage, and more).
  • Driver-based - Plug-and-play drivers let you easily swap storage backends without changing your code.
  • Middleware Support - Intercept, modify, or enhance data operations with powerful before/after hooks (e.g., encryption, logging, caching).
  • Lightweight & Fast - Minimal overhead with performance-first design.
  • Typed with JSDoc - Clean code with full TypeScript support and auto-complete in editors.

Documentation:

Ask DeepWiki

🔧 Example Usage

const FUSE = require("@fusedb/core");
const JSONDriver = require("@fusedb/json");
const Crypto = require("@fusedb/crypto");

const db = new FUSE({
  driver: new JSONDriver({ path: './data/database.json' }),
  middleware: [
    new Crypto({ key: process.env.DB_KEY })
  ]
});

(async () => {
  await db.set("user:123", { name: "Alice" });
  const user = await db.get("user:123");
  console.log(user); // { name: "Alice" }
})();

🔌 Official Drivers Available

  • @fusedb/json - JSON file-backed storage driver
  • @fusedb/toml - TOML file-backed storage driver
  • @fusedb/yaml - YAML file-backed storage driver
  • @fusedb/csv - CSV file-backed storage driver
  • @fusedb/sqlite - SQLite driver
  • @fusedb/postgres - PostgreSQL driver
  • @fusedb/mariadb - MariaDB driver
  • @fusedb/mysql - MySQL driver
  • @fusedb/mongodb - MongoDB driver

🔐 Official Middleware

  • @fusedb/crypto - AES encryption middleware
  • @fusedb/logger - Log database events to console and/or file

Got it! Here's the updated Contributing section with that naming guidance included:


🤝 Contributing

FUSE is built to be modular and community-driven - we welcome contributions of all kinds!

Want to add a new driver (e.g. Redis, MySQL, IndexedDB) or create powerful middleware (like compression, caching, analytics)? You're in the right place.


🧩 What You Can Build

  • Storage Drivers - Support any backend (SQL, NoSQL, file, browser, etc.)
  • Middleware Modules - Add features like encryption, validation, logging, caching, and more.
  • Enhancements - Bug fixes, performance tweaks, documentation, or new ideas.
  • Examples & Integrations - Show off how you're using FUSE in real-world apps.

🛠️ Getting Started

  1. Fork this repository.

  2. Clone your fork:

    git clone https://github.com/Fast-Unified-Storage-Engine/FUSE.git
    cd FUSE
  3. Install dependencies:

    npm install
  4. Build your custom driver/middleware in a new folder or standalone repo.

  5. Submit a Pull Request - or publish your own package!


📦 Publishing Drivers & Middleware

To keep the ecosystem consistent and easy to discover, we recommend one of these naming formats:

  • Official FUSE packages (preferred):

    • @fusedb/<name> Examples: @fusedb/json, @fusedb/crypto, @fusedb/sqlite
  • Community/Standalone packages (if not under @fusedb):

    • fusedb-<name> Example: fusedb-redis
    • @your-org/fusedb-<name> Example: @acmeorg/fusedb-indexeddb

You don't need to be part of the official org to contribute - just follow the naming pattern so others can find and use your work easily.


🙏 Thank You

Every contribution matters - whether it’s fixing bugs, improving docs, or building new modules. FUSE is a community effort, and your creativity helps push it forward.

Have questions or want to share ideas? Open an issue or start a discussion.


FUSE makes database logic portable, powerful, and fun to work with. No more rewriting logic per driver. Just plug in and go.

Fast. Unified. Extensible. FUSE.

License

Licensed under the Apache-2.0.