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

@mario_florio/json-database

v1.0.2

Published

A lightweight JSON file–based database wrapper providing a simple ODM-like interface for Node.js projects.

Readme

JSON Database

A lightweight JSON file–based database wrapper providing a simple ODM-like interface for Node.js projects.

This library is intended for local hobby projects, prototyping, or educational purposes to mock simple Mongoose/MongoDB-like methods. It is not designed for production use or serious data handling.

Overview

This project exposes a Model class which acts as an API for CRUD operations on a JSON file. The low-level file operations are handled by the DB class internally; users interact only with the Model class through its subclasses (which allow for customization of properties).

Features

  • Simple JSON file persistence for local projects
  • ODM-like static methods for querying (find, findById, findOne, etc.)
  • Instance methods for creating and saving records
  • Flexible querying by arbitrary keys
  • Automatically generates unique IDs and timestamps for new records

Setup

Prerequisites:

  • node & npm installed
  1. Install npm package:
npm i @mario_florio/json-database
  1. Import ODM:
import ODM from '@mario_florio/json-database';
  1. Create folder for database files:
mkdir -p database/collections
  1. Set DBPATH to folder for database files via ODM.setConfig (by default, DBPATH is set to 'database/collections/'):
setConfig({ DBPATH: 'database/collections/' });

Usage

import ODM from '@mario_florio/json-database';

// Set path to database collections
ODM.setConfig({ DBPATH: 'database/collections/' });

// Create Schema for Model
const Schema = ODM.Schema;
const UserSchema = new Schema({
    username: { type: 'string', required: true },
    password: { type: 'string', required: true },
    email: { type: 'string', required: true },
    firstName: { type: 'string', required: true },
    lastName: { type: 'string' },
    age: { type: 'number' },
    isActive: { type: 'boolean' }
});

// Create Model class bound to a JSON file
const User = ODM.model('user', UserSchema);

// Create new instance and save it
const newUser = new User({
    username: 'alice123',
    password: 'password',
    firstName: 'Alice',
    email: '[email protected]',
    age: 27
});
await newUser.save();

// Find by keys
const users = await User.find({ age: 27 });

// Find by ID
const userFoundByID = await User.findById(users[0]._id);

// Find by Operators
const usersFoundByOp = await User.find({ age: { $gt: 20 } });

// Update and delete
await User.findByIdAndUpdate(userFoundByID._id, { password: 'password1234' });
await User.findByIdAndDelete(userFoundByID._id);

API Reference

Model class methods

  • save() — Saves current instance to JSON DB
  • static find(queryObject) — Returns array of records matching all key-value pairs
  • static findById(id) — Returns single record matching unique ID
  • static findOne(queryObject) — Returns first record matching query
  • static findByIdAndUpdate(id, updatedKeys) — Updates record with matching ID
  • static findOneAndUpdate(queryObject, updatedKeys) — Updates first record matching query
  • static findByIdAndDelete(id) — Deletes record by ID
  • static findOneAndDelete(queryObject) — Deletes first record matching query

Notes and Limitations

  • Designed for small local projects or prototyping.

Testing

  • End-to-end — npm run test:e2e
  • Integration — npm run test:integration
  • Unit — npm run test:unit