kalharbi / express-mongodb-server

An express web server that receives mongodb queries as an http GET request and responses with the matched results

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Express-Mongodb-Server

An express web server that receives MongoDB queries as an http GET request and responses with all matched documents.

Setup

npm install
export ExpressMongo_HOST=your_mongod_host
export ExpressMongo_PORT= your_mongod_port
export ExpressMongo_USER= your_mongod_user_name
export ExpressMongo_PW= your_mongod_password
export ExpressMongo_DB= your_mongod_db_name
export ExpressMongo_COLLECTION= your_mongod_collection_name

Usage

This example uses: httpie

node ./index.js
http GET http://localhost:6000/find q=='{"n":"com.evernote"},{"t":1}'

About

An express web server that receives mongodb queries as an http GET request and responses with the matched results


Languages

Language:JavaScript 100.0%