文件名称:hellodb:适用于Node.JS应用程序的简单轻量级JSON数据库
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-03 05:17:52
JavaScript
简单轻巧的JSON数据库,使用键存储数据。 安装 将hellodb添加到现有的Node.JS应用程序。 npm i hellodb --save 用法 const HelloDB = require("hellodb"); const db = new HelloDB(); db.on("ready", async () => { dbOps(); }); async function dbOps() { //===INSERT AN OBJECT // // ID is generated automatically when the user is stored in the json file. const insertedUser = await db.put("users", { username: "yasmikash", age: 24,
【文件预览】:
hellodb-main
----index.js(43B)
----package.json(657B)
----src()
--------hellodb.js(6KB)
--------util()
----.gitignore(59B)
----README.md(2KB)