Releases: KylePDavis/mongodb-workbench
Releases · KylePDavis/mongodb-workbench
MongoDB Workbench v0.0.1
- Initial version with basic functionality:
- Servers
- Info -
db.serverStatus()
- Build -
db.serverBuildInfo()
- Info -
- Database
- Info -
db.stats()
- Info -
- Collection
- Info -
db.COLLECTION.stats()
- Insert -
db.COLLECTION.insert()
- Update -
db.COLLECTION.update()
- Remove -
db.COLLECTION.remove()
- Find -
db.COLLECTION.find()
- Aggregate -
db.COLLECTION.aggregate()
- Info -
- Servers
- inputs via real text editor with flexible parsing:
- basic
ace
editor goodies like highlighting, folding, hotkeys, search, goto line, naive completion - enter using loose JSON / JavaScript so you don't have to quote keys if you don't want to
- enter BSON objects in one of two ways:
- JSON:
{ $oid: "24b887afe9ab1e0f0c75bcd5" }
... and others from the MongoDB tools - JS:
ObjectID("24b887afe9ab1e0f0c75bcd5")
... and others from thebson
library
- JSON:
- basic
- results via a couple of different views:
- JSON:
- basic
ace
editor goodies like highlighting, folding, hotkeys, search, goto line
- basic
- Table:
- basic table based on object structure
- basic column sorting, resizing, etc.
- JSON: