1 unstable release
0.1.0 | Oct 23, 2024 |
---|
#676 in Database interfaces
159 downloads per month
51KB
715 lines
nu_plugin_mongo
A nushell plugin to interactive with mongodb.
Sometimes I want to explore mongodb data, but I don't want to open mongo
shell or python
to query mongodb data.
I want to have more lite weight tool to explore data. So here is the plugin.
Demo
Note
- All I want to do is query and explore data, so the plugin includes query commands only.
- You might note that the command prefix is
mongoc
, notmongo
. Because I don't want to make the name conflict with official lagacy mongo cli.
Usage
- First, you need to have latest nushell installed(Of cause it's a nushell plugin).
- Then you can install from
cargo
cargo install nu_plugin_mongo
- Add and use the plugin:
plugin add <nu_plugin_mongo_path>; plugin use mongo
- Then you will gain some
mongoc
commands to play with.
Full help
> mongoc
Operate with mongodb
You must use one of the following subcommands. Using this command as-is will only produce this help message.
Usage:
> mongoc
Subcommands:
mongoc find - find mongodb documents
mongoc find-one - find mongodb documents
mongoc list - list mongodb connections
mongoc list-colls - list all available collection names
mongoc list-indexes - find mongodb documents
mongoc open - open mongodb connection, the url must contains default databse
mongoc remove - remove mongodb handles
mongoc select - select current mongodb handle
Flags:
-h, --help: Display the help message for this command
Input/output types:
╭───┬─────────┬────────╮
│ # │ input │ output │
├───┼─────────┼────────┤
│ 0 │ nothing │ string │
╰───┴─────────┴────────╯
Dependencies
~35–67MB
~1.5M SLoC