UNPKG

skyrisingdb

Version:

🌌 Sky._.RisingDB - Light Up Your Data! 🚀 Sky._.RisingDB is a simple, lightweight, and beginner-friendly database for Node.js. Inspired by the beauty of auroras, it's designed to make data storage effortless. Whether you're building a small app or experi

12 lines (8 loc) • 202 B
// src/query.js const Database = require('./database'); class Query { static find(modelClass, query) { return Database.find(modelClass, query); } } module.exports = Query;