{"id":51315933,"url":"https://github.com/kilicdev/bucksh0t.db","last_synced_at":"2026-07-01T07:03:20.658Z","repository":{"id":143092383,"uuid":"467211774","full_name":"kilicdev/bucksh0t.db","owner":"kilicdev","description":"Database Advanced features By bucksh0t.dev","archived":false,"fork":false,"pushed_at":"2026-04-08T13:53:39.000Z","size":9,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-16T22:34:42.156Z","etag":null,"topics":["database","javascript","library","module","nodejs"],"latest_commit_sha":null,"homepage":"https://bucksh0t.dev","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kilicdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-03-07T18:24:41.000Z","updated_at":"2026-04-04T12:36:39.000Z","dependencies_parsed_at":"2024-01-24T22:21:16.390Z","dependency_job_id":null,"html_url":"https://github.com/kilicdev/bucksh0t.db","commit_stats":null,"previous_names":["bucksh0ttr/csy.db","bucksh0tdev/csy.db","bucksh0tdev/bucksh0t.db","kilicdev/bucksh0t.db"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/kilicdev/bucksh0t.db","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kilicdev%2Fbucksh0t.db","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kilicdev%2Fbucksh0t.db/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kilicdev%2Fbucksh0t.db/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kilicdev%2Fbucksh0t.db/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kilicdev","download_url":"https://codeload.github.com/kilicdev/bucksh0t.db/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kilicdev%2Fbucksh0t.db/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34996290,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-01T02:00:05.325Z","response_time":130,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["database","javascript","library","module","nodejs"],"created_at":"2026-07-01T07:03:19.970Z","updated_at":"2026-07-01T07:03:20.646Z","avatar_url":"https://github.com/kilicdev.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://nodei.co/npm/bucksh0t.db\"\u003e\u003cimg src=\"https://nodei.co/npm/bucksh0t.db.png\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/bucksh0t.db?style=for-the-badge\"\u003e \u003cimg src=\"https://img.shields.io/github/repo-size/bucksh0tdev/bucksh0t.db?style=for-the-badge\"\u003e \u003cimg src=\"https://img.shields.io/npm/l/bucksh0t.db?style=for-the-badge\"\u003e \u003cimg src=\"https://img.shields.io/npm/dt/bucksh0t.db?style=for-the-badge\"\u003e \u003cimg src=\"https://img.shields.io/github/contributors/bucksh0tdev/bucksh0t.db?style=for-the-badge\"\u003e\u003c/p\u003e\n\n# bucksh0t.db\n\n**Examples:**\n```js\n// Data Set | Get | Add\ndb.set(\"KEY\", \"DATA\"); // Change Data And Result Data\ndb.get(\"KEY\"); // Result Data\ndb.add(\"KEY\"); // Change Data And Result Data\ndb.fetch(\"KEY\"); // Result Data\ndb.push(\"KEY.KEY\", \"data\"); // Push Datas Json or Array\n\n// Data All\n\ndb.all(\"OPTIONAL MAX DATAS NUMBER\"); // All Datas\n\n// Data exists\n\ndb.has(\"KEY\"); // True/False\n\n// Data Count\n\ndb.size(); // All Data Length\n\n// Created Notification\ndb.on(\"create\", (datas) =\u003e {\n    console.log(`Created Data Name: \"${datas.key}\", Value: \"${datas.value}\"`);\n});\n\n// Updated Notification\ndb.on(\"update\", (datas) =\u003e {\n    console.log(`Updated Data Name: \"${datas.key}\", Last Value: \"${datas.last}\", New Value: \"${datas.new}\"`);\n});\n\n// Deleted Notification\ndb.on(\"delete\", (datas) =\u003e {\n    console.log(`Deleted Data Name: \"${datas.key}\", Value: \"${datas.value}\"`);\n});\n```\n\n**Main Data**\n```js\nconst db = require(\"bucksh0t.db\");\n```\n\n**Multiple Data**\n```js\nconst bucksh0t = require(\"bucksh0t.db\");\nconst db = new bucksh0t.create(\"datas.json\", 0); // ({PATH}, {MAX})\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkilicdev%2Fbucksh0t.db","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkilicdev%2Fbucksh0t.db","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkilicdev%2Fbucksh0t.db/lists"}