geraldinelemeur / Mongoku

The Web-scale GUI for MongoDB

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mongoku

MongoDB client for the web. Query your data directly from your browser. You can host it locally, or anywhere else, for you and your team.

It scales with your data (at Hugging Face we use it on a 1TB+ cluster) and is blazing fast for all operations, including sort/skip/limit. Built on TypeScript/Node.js/Angular.

Demo

mongoku

Install & Run

This is the easy and recommended way of installing and running Mongoku.

# Install
npm install mongoku

# Run from your current terminal
mongoku start

You can also run Mongoku as a daemon, using either PM2 or Forever.

mongoku start --pm2
# or
mongoku start --forever

Manual Build

If you want to manually build and run mongoku, just clone this repository and run the following:

# Install the angular cli if you don't have it already
npm install -g typescript @angular/cli

# Build the front
cd app
npm install
ng build

# And the back
cd ..
npm install
tsc

# Run
node dist/server.js

About

The Web-scale GUI for MongoDB

License:MIT License


Languages

Language:TypeScript 72.5%Language:HTML 14.1%Language:CSS 13.3%Language:Shell 0.0%