{"id":30657296,"url":"https://github.com/saviornt/nexuslite","last_synced_at":"2025-08-31T11:12:41.486Z","repository":{"id":310693098,"uuid":"1039870032","full_name":"saviornt/NexusLite","owner":"saviornt","description":"Nexus-Lite is an embedded NoSQL database engine, inspired by the best features of MongoDB (document collections) and Redis (in-memory performance, TTL, and LRU caching). The goal is to provide a lightweight, embeddable, efficient, and flexible database engine similar to SQLite but for NoSQL workloads.","archived":false,"fork":false,"pushed_at":"2025-08-19T16:55:54.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-19T18:32:23.841Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/saviornt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2025-08-18T05:36:33.000Z","updated_at":"2025-08-19T16:55:57.000Z","dependencies_parsed_at":"2025-08-19T18:32:26.331Z","dependency_job_id":"44880b03-dae1-4f49-912a-734e8ab696c2","html_url":"https://github.com/saviornt/NexusLite","commit_stats":null,"previous_names":["saviornt/nexuslite"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/saviornt/NexusLite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saviornt%2FNexusLite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saviornt%2FNexusLite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saviornt%2FNexusLite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saviornt%2FNexusLite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saviornt","download_url":"https://codeload.github.com/saviornt/NexusLite/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saviornt%2FNexusLite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272971549,"owners_count":25024099,"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-08-31T02:00:09.071Z","response_time":79,"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":[],"created_at":"2025-08-31T11:12:40.561Z","updated_at":"2025-08-31T11:12:41.470Z","avatar_url":"https://github.com/saviornt.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NexusLite\n\nA lightweight, embeddable **NoSQL database engine** written in Rust. It is designed for **speed, reliability, and security**, NexusLite provides a document collection store with advanced recovery and cryptographic safeguards and can be used for both persistent and ephemeral documents.\n\n---\n\n## Features\n\n- BSON document store with CRUD operations\n- **API, CLI, and REPL** interfaces\n- Import/Export using multiple formats (CSV, JSON, BSON)\n- Configurable caching \u0026 indexing\n- Security-first: Unsafe Rust checks, supply-chain validation and ECC-256\n- Strong testing suite: Unit, Integration and property tests for CI/CD pipelines and extensive interactive tests for Mock testing.\n\n[Explore full feature details -\u003e Wiki](https://github.com/saviornt/NexusLite/wiki)\n\n---\n\n## Installation\n\nBuild source with Cargo:\n\n```bash\ncargo install nexuslite\n```\n\nOr clone and run locally:\n\n```bash\ngit clone https://github.com/saviornt/NexusLite.git\ncd NexusLite\ncargo run\n```\n\n---\n\n## Quick start\n\n### Basic Database Operations with Persistent Documents\n\n#### Rust API\n\n```rust\n// Create the example for basic CRUD operations including:\n// - Create new database\n// - Open the database\n// - Create a new collection\n// - Insert a persistent document\n// - Read the persistent document\n// - Update the persistent document\n// - Delete the persistent document\n// - Delete the collection\n// - Close the database\n```\n\n#### CLI\n\n```bash\n# Create the CLI commands for basic database operations with persistent documents.\n# The CLI commands for this example should follow the previous code example.\n# Note: Examples should include the command syntax for Linux, Windows and MacOS\n```\n\n#### REPL\n\n```bash\n# Create the REPL commands for basic database operations with persistent documents.\n```\n\n### Basic Database Operations with Ephemeral Documents\n\n```rust\n// Create the example for basic CRUD operations including:\n// - Open the database\n// - Insert an ephemeral document\n// - Read the ephemeral document from the collection\n// - Update the ephemeral document\n// - Delete the ephemeral document\n// - Close the database\n```\n\n```bash\n# Create the CLI commands for basic database operations with ephemeral documents.\n# The CLI commands for this example should follow the previous code example.\n# Note: Examples should include the command syntax for Linux, Windows and MacOS\n```\n\n```bash\n# Create the REPL commands for basic database operations with ephemeral documents.\n```\n\n### Import/Export Operations\n\n```rust\n// Create the example for import/export operations including:\n// - Open or create a database\n// - Import a collection from NDJSON\n// - Export the collection to CSV\n// - Close the database\n```\n\n```bash\n# Create the CLI commands for import/export operations with persistent documents.\n# The CLI commands for this example should follow the previous code example.\n# Note: Examples should include the command syntax for Linux, Windows and MacOS\n```\n\n```bash\n# Create the REPL commands for import/export operations with persistent documents.\n```\n\n---\n\n## Advanced Usage\n\n- Feature flags (`crypto`, `logging`, `open-metrics`, `snapshot`, `regex`, `cli-bin`, `doctor`, `repl`)\n- Recovery \u0026 Write-Ahead Shadow Paging (WASP)\n- Logging and metrics\n- Security, supply chain and PQC considerations\n\n[See Advanced Topics -\u003e Wiki](https://github.com/saviornt/NexusLite/wiki/Advanced-Topics)\n\n---\n\n## Development\n\n- [Architecture](https://github.com/saviornt/NexusLite/wiki/Architecture)\n- [Project Structure](https://github.com/saviornt/NexusLite/wiki/Project-Structure)\n- [Testing Strategy](https://github.com/saviornt/NexusLite/wiki/Testing-Strategy)\n\n---\n\n## Security\n\n- Unsafe Rust detection (`cargo-geiger`)\n- Dependency auditing and license checks (`cargo-audit` \u0026 `cargo-deny`)\n- Authentication and Verification using ECC-256 and ECDSA\n\n[Security \u0026 Reliability -\u003e Wiki](https://github.com/saviornt/NexusLite/wiki/Security-\u0026-Reliability)\n\n---\n\n## Roadmap\n\n- [x] Core CRUD and Recovery Engine\n- [x] CLI \u0026 REPL\n- [x] Advanced recovery and WASP tuning\n- [x] Cryptographic operations\n- [ ] Bindings (Python, WASM, ...)\n- [ ] Experimental Features (PQC, Vector Maps)\n\n[Project Roadmap](https://github.com/saviornt/NexusLite/wiki/Project-Roadmap)\n\n---\n\n## Contributing\n\nContributions are welcome!\n\nPlease see the [Contributing Guide](https://github.com/saviornt/NexusLite/wiki/Contributing-Guide) for coding standards, feature proposals, and security practices.\n\n## License\n\nMIT License, See [LICENSE](LICENSE) for details.\n\n---\n\n## Quick Links\n\n- [Wiki Home](https://github.com/saviornt/NexusLite/wiki)\n- [Architecture](https://github.com/saviornt/NexusLite/wiki/Architecture)\n- [Advanced Usage](https://github.com/saviornt/NexusLite/wiki/Advanced-Usage)\n- [Security](https://github.com/saviornt/NexusLite/wiki/Security-\u0026-Reliability)\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaviornt%2Fnexuslite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaviornt%2Fnexuslite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaviornt%2Fnexuslite/lists"}