MongoExec
A sublime text 3 plugin to execute mongodb commands
Details
Installs
- Total 6K
- Win 3K
- Mac 2K
- Linux 1K
Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | Jun 30 | Jun 29 | Jun 28 | Jun 27 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
MongoExec
A Plugin for running Mongo commands in Sublime Text.
Authors
- Abdelaziz CHATIR
Usage:
Commands Available:
- [Ctrl+Alt+w] => List all databases.
- [Ctrl+w Ctrl+c] => List all collections.
- [Ctrl+w Ctrl+w] => Execute a selected querie.
- [Ctrl+w Ctrl+h] => List Queries history.
- [Ctrl+w Ctrl+q] => Execute a specific query.
- [Ctrl+w Ctrl+f] => Execute a specific file (js).
- [Ctrl+w Ctrl+v] => Execute a specefic view (from sublime even if not saved).
How to Install
Package Control (Recommended)
- Package Control: Install Package
MongoExec
- Restart Sublime Text
Git
- Clone to your packages folder
git clone git@github.com:aChatir/MongoExec.git
- Restart Sublime Text
Download
- Download this ZIP file
- Move to packages folder (In the **Sublime Text 3* menu → Preferences → Browse Packages…)*
- Restart Sublime Text
Configuration
Settings
'Preferences' -> 'Package Settings' -> 'MongoExec'
{
"mongo_exec.commands": {
"mongo" : "/usr/bin/mongo"
},
"connections": {
"Localhost": {
"type" : "mongo",
"host" : "localhost",
"port" : "27017",
"username": "",
"password": "",
"databases": ""
}
}
}
Inspired and Based on SQLExec