{"id":18447548,"url":"https://github.com/mustakimali/litedb.shell.netcore","last_synced_at":"2025-06-21T13:35:58.567Z","repository":{"id":98504030,"uuid":"95048690","full_name":"mustakimali/LiteDB.Shell.NetCore","owner":"mustakimali","description":"Cross platform LiteDB.Shell - compiled against netcoreapp1.1","archived":false,"fork":false,"pushed_at":"2017-06-21T21:44:46.000Z","size":20,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-05T05:26:16.138Z","etag":null,"topics":["litedb","litedb-database","litedb-shell","netcore","nosql"],"latest_commit_sha":null,"homepage":null,"language":"C#","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/mustakimali.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}},"created_at":"2017-06-21T21:41:45.000Z","updated_at":"2023-01-24T05:29:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"fe9d117e-a921-4de2-aee1-f7fff14a17e7","html_url":"https://github.com/mustakimali/LiteDB.Shell.NetCore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mustakimali/LiteDB.Shell.NetCore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustakimali%2FLiteDB.Shell.NetCore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustakimali%2FLiteDB.Shell.NetCore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustakimali%2FLiteDB.Shell.NetCore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustakimali%2FLiteDB.Shell.NetCore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mustakimali","download_url":"https://codeload.github.com/mustakimali/LiteDB.Shell.NetCore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mustakimali%2FLiteDB.Shell.NetCore/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261129854,"owners_count":23113900,"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","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":["litedb","litedb-database","litedb-shell","netcore","nosql"],"created_at":"2024-11-06T07:13:43.722Z","updated_at":"2025-06-21T13:35:53.553Z","avatar_url":"https://github.com/mustakimali.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LiteDB.Shell - compiled against `netcoreapp1.1`\n\nI use this to browse [LiteDB](https://github.com/mbdavid/LiteDB) Database in Linux and Mac.\nThe code came directly from [LiteDB.Shell](https://github.com/mbdavid/LiteDB/tree/master/LiteDB.Shell) by [mbdavid](https://github.com/mbdavid)\n\nAll thanks goes to the original author of LiteDB project\n\n# Usage\n- Clone\n- `dotnet restore \u0026 dotnet publish`\n- `cd bin/Debug/netcoreapp1.1/publish/`\n- `dotnet LiteDB.Shell.NetCore.dll \u003cLiteDB File Location\u003e`\n\n```\nBasic Shell Commands - try `help full` for all commands\n=======================================================\n\u003e open \u003cfilename\u003e|\u003cconnectionString\u003e\n    Open/Crete a new database\n\n\u003e show collections\n    List all collections inside database\n\n\u003e db.\u003ccollection\u003e.insert \u003cjsonDoc\u003e\n    Insert a new document into collection\n\n\u003e db.\u003ccollection\u003e.update \u003cjsonDoc\u003e\n    Update a document inside collection\n\n\u003e db.\u003ccollection\u003e.delete \u003cfilter\u003e\n    Delete documents using a filter clausule (see find)\n\n\u003e db.\u003ccollection\u003e.find \u003cfilter\u003e [skip N][limit N]\n    Show filtered documents based on index search\n\n\u003e db.\u003ccollection\u003e.count \u003cfilter\u003e\n    Show count rows according query filter\n\n\u003e db.\u003ccollection\u003e.ensureIndex \u003cfield\u003e [true|{options}]\n    Create a new index document field. For unique key, use true\n\n\u003e db.\u003ccollection\u003e.indexes\n    List all indexes in this collection\n\n\u003cfilter\u003e = \u003cfield\u003e [=|\u003e|\u003e=|\u003c|\u003c=|!=|like|between] \u003cjsonValue\u003e\n    Filter query syntax\n\n\u003cfilter\u003e = (\u003cfilter\u003e [and|or] \u003cfilter\u003e [and|or] ...)\n    Multi queries syntax\n\nTry:\n \u003e db.customers.insert { _id:1, name:\"John Doe\", age: 37 }\n \u003e db.customers.ensureIndex name\n \u003e db.customers.find name like \"John\"\n \u003e db.customers.find name like \"John\" and _id between [0, 100] limit 10\n```\n\n\u003e I could not find any GUI tool to browse LiteDB database in Unix platform, if you know one - please let me know.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmustakimali%2Flitedb.shell.netcore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmustakimali%2Flitedb.shell.netcore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmustakimali%2Flitedb.shell.netcore/lists"}