msavin:mongol

v1.6.2Published 10 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Meet Mongol, the Original Development Tool for Meteor

Starting today, you'll never have to enter the console to play with your collections again. With Mongol, you can view and edit your client documents right in the browser. And because Mongol is a debugOnly package, it does not compile to your production build.

Plug & Play Installation

Mongol configures automatically. To get started, run:

$ meteor add msavin:mongol

After installation, open your app in the browser and press Control + M to toggle it. If you require additional configuration, check out the documentation.

How Does It Work?

Using Mongol is like having a database management tool with-in your Meteor application. Since Mongol acts on minimongo, you don't have to run queries to find your active documents. With that, you can:

  • View the document counts in your minimongo collection
  • Browse the documents in your minimongo collection
  • Modify any document as if you have insecure on
  • Get a reactive window into your data

FAQ

Does Mongol require insecure to work? No, Mongol has special set of method's that allow it to interact with the database without disrupting your application permissions.

Is there a security risk to using Mongol? Since Mongol is a debugOnly package, Meteor's build process will not compile it into production code.

Will Mongol cause my application to behave differently? All of the code and functions of Mongol are pre-fixed and scoped, so there shouldn't be any intrusion.