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

@zibot/db

v0.0.3

Published

ZiDB is a simple database for discord bot

Readme

@zibot/db

Một thư viện database JSON lightweight với API mô phỏng MongoDB/Mongoose để dễ dàng fallback hoặc migrate project mà không cần cài MongoDB.

Tính năng

  • Không cần database server
  • Lưu dữ liệu trực tiếp vào file JSON
  • API gần giống MongoDB/Mongoose
  • Hỗ trợ TypeScript
  • Hỗ trợ update operators:
    • $set
    • $inc
    • $unset
    • $push
    • $pull
  • Hỗ trợ:
    • find
    • findOne
    • findById
    • create
    • save
    • insertMany
    • updateOne
    • findOneAndUpdate
    • findOneAndDelete
    • deleteOne
    • deleteMany
    • exists
    • countDocuments
  • Hỗ trợ upsert
  • Hỗ trợ new: true

Cài đặt

npm install @zibot/db

Khởi tạo

const { Database, createModel } = require("@zibot/db");

const db = new Database("./database.json");

const users = createModel(db, "users");

Ví dụ sử dụng

create / save

await users.create({
	name: "Alice",
	age: 20,
});

await users.save({
	name: "Bob",
});

find

const results = await users.find({
	age: 20,
});

console.log(results);

findOne

const user = await users.findOne({
	name: "Alice",
});

console.log(user);

findById

const user = await users.findById("1746867000");

console.log(user);

updateOne

await users.updateOne(
	{ name: "Alice" },
	{
		$set: {
			age: 25,
		},
	},
);

findOneAndUpdate

const updated = await users.findOneAndUpdate(
	{ name: "Alice" },
	{
		$inc: {
			coins: 100,
		},
	},
	{
		new: true,
	},
);

console.log(updated);

upsert

await users.updateOne(
	{
		name: "Unknown",
	},
	{
		$set: {
			age: 18,
		},
	},
	{
		upsert: true,
	},
);

deleteOne

await users.deleteOne({
	name: "Alice",
});

deleteMany

await users.deleteMany({
	banned: true,
});

findOneAndDelete

const deleted = await users.findOneAndDelete({
	name: "Bob",
});

console.log(deleted);

insertMany

await users.insertMany([
	{
		name: "A",
	},
	{
		name: "B",
	},
]);

exists

const exists = await users.exists({
	name: "Alice",
});

console.log(exists);

countDocuments

const total = await users.countDocuments({
	verified: true,
});

console.log(total);

Update Operators

$set

await users.updateOne(
	{ name: "Alice" },
	{
		$set: {
			age: 30,
		},
	},
);

$inc

await users.updateOne(
	{ name: "Alice" },
	{
		$inc: {
			coins: 50,
		},
	},
);

$unset

await users.updateOne(
	{ name: "Alice" },
	{
		$unset: {
			tempField: true,
		},
	},
);

$push

await users.updateOne(
	{ name: "Alice" },
	{
		$push: {
			tags: "admin",
		},
	},
);

$pull

await users.updateOne(
	{ name: "Alice" },
	{
		$pull: {
			tags: "admin",
		},
	},
);

TypeScript

import { Database, createModel } from "@zibot/db";

interface User {
	_id?: string;
	name: string;
	age: number;
	coins: number;
	tags: string[];
}

const db = new Database("./database.json");

const users = createModel<User>(db, "users");

await users.updateOne(
	{ name: "Alice" },
	{
		$inc: {
			coins: 100,
		},
	},
);

API

Database

Constructor

new Database(path?: string)

Methods

| Method | Description | | -------------------- | ---------------------- | | create() | Tạo document | | save() | Lưu document | | insertMany() | Thêm nhiều document | | find() | Tìm nhiều document | | findOne() | Tìm một document | | findById() | Tìm theo _id | | updateOne() | Update document | | findOneAndUpdate() | Update và trả document | | findOneAndDelete() | Xóa và trả document | | deleteOne() | Xóa một document | | deleteMany() | Xóa nhiều document | | exists() | Kiểm tra tồn tại | | countDocuments() | Đếm document |


Mục tiêu thư viện

@zibot/db được thiết kế cho:

  • Discord bots
  • Local projects
  • Lightweight apps
  • Fallback database
  • Development/testing
  • Offline storage
  • Small APIs

Không phù hợp cho:

  • Dữ liệu cực lớn
  • Concurrent write cực cao
  • Multi-server production

License

MIT