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.
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
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