All Projects → azat-co → Mongoui

azat-co / Mongoui

Licence: mit
MongoDB admin UI server written in Node.js 🎮

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mongoui

Lungo
A MongoDB compatible embeddable database and toolkit for Go.
Stars: ✭ 343 (-39.4%)
Mutual labels:  database, mongodb
Mongo Seeding
The ultimate solution for populating your MongoDB database.
Stars: ✭ 375 (-33.75%)
Mutual labels:  database, mongodb
Vue Chess
Multiplayer online chess game use Vue , Nodejs, Webpack, Em6, Socket.io, Mongodb, Express
Stars: ✭ 350 (-38.16%)
Mutual labels:  webpack, mongodb
Securing Restful Apis With Jwt
How to secure a Nodejs RESTful CRUD API using JSON web tokens?
Stars: ✭ 301 (-46.82%)
Mutual labels:  database, mongodb
Migrate Mongo
A database migration tool for MongoDB in Node
Stars: ✭ 481 (-15.02%)
Mutual labels:  database, mongodb
Nest Angular
NestJS, Angular 6, Server Side Rendering (Angular Universal), GraphQL, JWT (JSON Web Tokens) and Facebook/Twitter/Google Authentication, Mongoose, MongoDB, Webpack, TypeScript
Stars: ✭ 307 (-45.76%)
Mutual labels:  webpack, mongodb
Bigchaindb
Meet BigchainDB. The blockchain database.
Stars: ✭ 3,768 (+565.72%)
Mutual labels:  database, mongodb
Myblog
vue + node 实现的一个博客系统
Stars: ✭ 285 (-49.65%)
Mutual labels:  webpack, mongodb
Qmgo
Qmgo - The Go driver for MongoDB. It‘s based on official mongo-go-driver but easier to use like Mgo.
Stars: ✭ 444 (-21.55%)
Mutual labels:  database, mongodb
Mongo
The MongoDB Database
Stars: ✭ 20,883 (+3589.58%)
Mutual labels:  database, mongodb
Node Orm2
Object Relational Mapping
Stars: ✭ 3,063 (+441.17%)
Mutual labels:  database, mongodb
Denodb
MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Stars: ✭ 498 (-12.01%)
Mutual labels:  database, mongodb
Pro Mern Stack
Code Listing for the book Pro MERN Stack
Stars: ✭ 290 (-48.76%)
Mutual labels:  webpack, mongodb
Gokv
Simple key-value store abstraction and implementations for Go (Redis, Consul, etcd, bbolt, BadgerDB, LevelDB, Memcached, DynamoDB, S3, PostgreSQL, MongoDB, CockroachDB and many more)
Stars: ✭ 314 (-44.52%)
Mutual labels:  database, mongodb
Blog
Front-end tech thoughts and share-ppt
Stars: ✭ 288 (-49.12%)
Mutual labels:  webpack, mongodb
Dbpatterns
Dbpatterns is a service that allows you to create, share, explore database models on the web. Built on top of Django, Backbone. Patterns are stored on MongoDB, and uses Lettuce for BDD approach.
Stars: ✭ 355 (-37.28%)
Mutual labels:  database, mongodb
Drmongo
MongoDB admin app built on MeteorJs.
Stars: ✭ 283 (-50%)
Mutual labels:  database, mongodb
Nodejs Restful Api
How to create a RESTful CRUD API using Nodejs?
Stars: ✭ 285 (-49.65%)
Mutual labels:  database, mongodb
Adminmongo
adminMongo is a Web based user interface (GUI) to handle all your MongoDB connections/databases needs.
Stars: ✭ 3,792 (+569.96%)
Mutual labels:  database, mongodb
Faqguru
🎒 🚀 🎉 A list of interview questions. This repository is everything you need to prepare for your technical interview.
Stars: ✭ 4,653 (+722.08%)
Mutual labels:  webpack, mongodb

MongoUI: MongoUI (mongoui) is a web (browser) admin interface for MongoDB.

MongoUI is an open-source web and desktop app which allows to administer local and remote MongoDB instances via GUI. No need to type commands in a terminal anymore. Convenient interface will allow to create, update, remove and filter/search documents. You can switch between collections or even databases with just a single click.

Currently a standalone tool (run as an app locally or on your server); desktop app later. This is a brand new v2 of MongoUI. Old version use DerbyJS, then new version uses Webpack, React, React Router, React Bootstrap and of course Express and Node.

MongoUI v2 looks like this (gif):

Here's another short video that shows filtering, editing, and switching collections:


Why

Tired of typing db.users.findOne({_id:ObjectId(...)}) just to look up data structure. Even more typing to modify the data. Not happy with the user experience of other MongoDB admin tools?

Meet MongoUI! Alternative to exprss-mongo and Robomongo.


Installation

npm i -g mongoui
mongoui

Dev Installation

Download MongoUI

SSH:

git clone [email protected]:azat-co/mongoui
npm i

or HTTPS

git clone https://github.com/azat-co/mongoui.git

or CURL

curl -O https://github.com/azat-co/mongoui/archive/master.zip

or WGET

wget https://github.com/azat-co/mongoui/archive/master.zip
unzip master.zip
cd mongoui-master

Install Dependencies

npm i

Usage

Build and Run MongoUI in Regular Mode

npm start

Then, open http://localhost:3001 in your favorite browser. Enjoy!

Build and Run MongoUI in Development (Hot-Reload) Mode

Front-end development in one terminal:

npm run start-dev

Open http://localhost:3000/ in your favorite browser.

Note: there are two ports, 3001 and 3000. In dev mode you need to go to 3000, in regular mode, navigate to 3001. This is because in dev mode, we are using webpack dev server on 3000 and the API (index.js) is alway on 3001.


Additional Tasks

You'll need MongoDB running for MongoUI to work:

mongod

Front-end build:

npm run build

Configs

Configurations are in the config.json file. Modify as needed (remote databases should work just fine!).

{
  "database": {
    "default": {
      "host": "localhost",
      "port": 27017,
      "name": "mongoui",
      "username": "",
      "password": ""
    }
  }
}

Branches

  • Master — major releases, main branch
  • Develop — current development branch (make your pull requests here)

Contributors

Via git shortlog -s -n:

    83  azat-co
    67  Azat Mardan
    65  Azat Mardanov
    26  Tom2277
    14  cultofmetatron
    12  Will Hart
     1  Sam Tobia
     1  Jan Carlo Viray

TODO

The list is in the GitHub Issues.

How to contribute in the CONTRIBUTING.md

Running Tests

In order to run the tests which are in test folder, you will need:

  • Node.js
  • NPM

With those installed, running npm install and ''npm test'' will run the tests.

Non-node.js alternatives

License

License is in LICENSE.md

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].