{"id":14985618,"url":"https://github.com/flame-development/nexusdb","last_synced_at":"2026-04-01T20:35:58.385Z","repository":{"id":162148327,"uuid":"636725237","full_name":"Flame-Development/NexusDB","owner":"Flame-Development","description":"Nexus.DB is a top-tier \u0026 open-source local database with JSON support designed to be easy to set-up and use.","archived":false,"fork":false,"pushed_at":"2023-08-01T14:30:17.000Z","size":12,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-07T12:56:14.385Z","etag":null,"topics":["json","nodejs","npm-module","npm-package","npmjs","yaml","yml"],"latest_commit_sha":null,"homepage":"https://Flame-Development.github.io","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Flame-Development.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}},"created_at":"2023-05-05T13:54:12.000Z","updated_at":"2024-08-13T15:51:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"d31cdee6-9bd2-44b7-9e69-99134893251a","html_url":"https://github.com/Flame-Development/NexusDB","commit_stats":{"total_commits":9,"total_committers":2,"mean_commits":4.5,"dds":0.2222222222222222,"last_synced_commit":"0ed98220947a6c8769a24a01d33bc615b78e722d"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Flame-Development/NexusDB","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flame-Development%2FNexusDB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flame-Development%2FNexusDB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flame-Development%2FNexusDB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flame-Development%2FNexusDB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Flame-Development","download_url":"https://codeload.github.com/Flame-Development/NexusDB/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Flame-Development%2FNexusDB/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278778967,"owners_count":26044256,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"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":["json","nodejs","npm-module","npm-package","npmjs","yaml","yml"],"created_at":"2024-09-24T14:11:22.367Z","updated_at":"2025-10-07T12:56:14.962Z","avatar_url":"https://github.com/Flame-Development.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\t\u003cp\u003e\n\t\t\u003ca href=\"https://www.npmjs.com/package/nexus.db\"\u003e\u003cimg src=\"https://img.shields.io/npm/dt/nexus.db?color=4B68F6\u0026style=for-the-badge\" alt=\"NPM Downloads\" /\u003e\u003c/a\u003e\n\t\t\u003ca href=\"https://www.npmjs.com/package/nexus.db\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/nexus.db?color=04DCC6\u0026style=for-the-badge\" alt=\"npm Version\" /\u003e\u003c/a\u003e\n\t\u003c/p\u003e\n\u003c/div\u003e\n\n## About\nNexus.DB is a top-tier \u0026 open-source local database for [JSON](https://en.wikipedia.org/wiki/JSON) support designed to be easy to set up and use\n- Beginner friendly     \n- Easy to use    \n- Persistent Storage\n- Key-Value like interface    \n- Database files inside and outside the project\n- Supports [JSON](https://en.wikipedia.org/wiki/JSON)\n- Quick respond\n\n## Installation\nInstall with [npm](https://www.npmjs.com/) / [yarn](https://yarnpkg.com) / [pnpm](https://pnpm.js.org/):\n```sh\nnpm install nexus.db\nyarn add nexus.db\npnpm add nexus.db\n```\n\n## Examples\n```js\n// Create Database\nconst NexusDB = require(\"nexus.db\");\nconst db = new NexusDB.Database({ path: \"./Database/NexusDB.json\" })\n\n\n// Data Set | Data Get\ndb.set(\"MyBalance\", 50000)\ndb.set(\"users.aria.balance\", 99000) // { users: { aria: { balance: 99000 } } }\ndb.set(\"AnObject\", { ok: \"ok\" })\ndb.get(\"MyBalance\")\ndb.get(\"users.aria\") // { balance: 99000 }\n\n// Data Exists\ndb.has(\"MyBalance\") // Boolean\n\n// Fetch All Database Data\ndb.all() // All Data\ndb.all(5) // All Data With \"5\" Limit\n\n// Get JSON'd Database\ndb.toJSON()\ndb.toJSON(5) // JSON Data With \"5\" Limit\n\n// Delete Data\ndb.delete(\"users\")\ndb.delete(\"MyBalance\")\ndb.clear() // Clear All Data\n\n// Data Type\ndb.type(\"MyData\") // can be (string, number, object, null, array, etc.)\n\n// Data Math Operations\ndb.add(\"YourMoney\", 10000) // 10000\ndb.substr(\"YourMoney\", 3000) // 7000\ndb.add(\"YourMoney\", 10000) /// 17000\n\n// Data Finding\ndb.includes(\"rMone\") // YourMoney\ndb.startsWith(\"YourMo\") // YourMoney\ndb.endsWith(\"oney\") // YourMoney\n\n// Nexus Info\nconsole.log(NexusDB.version)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflame-development%2Fnexusdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fflame-development%2Fnexusdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fflame-development%2Fnexusdb/lists"}