Does the Meteor framework come with a REPL or console of some kind? If not, any idea how to use the Node.js REPL in a way that bootstraps the Meteor environment?
I'm essentially looking for something like the rails console, or the javascript console in a web browser: a command line interface that makes the application's full context available, so I can arbitrarily inspect objects like Meteor
and Template
.
meteor
command starts the server up andmeteor mongo
gives you access to meteor's mongo db. – Dioscuri