Update to MongoDB REST (0.6.3)
After a short holiday of about a week, I'm back at work and immediately continued working on my MongoDB REST Server. The latest source is now up on GitHub.
The latest version is basically a big upgrade and stepping away from a custom HTTP server and using Express instead. Tests have been rewritten in Expresso and we now have the beginnings of a simple Web-GUI.
Obtaining MongoDB REST has never been easier, if you use npm that is:
npm install mongodb-rest
Running it would then be:
mongodb-rest
That's it! After that you can fire up your browser and connect to localhost:3000 and get to work. If you would like to override the configuration put a config.json file in the folder where you're starting mongodb-rest with the following content:
{"db":{"port":27017,"host":"localhost"},
"server":{"port":3000,"address":"0.0.0.0"},
"flavor":"regular",
"debug":true}
