Possible Duplicate:
Relation between REPL, interpreter and compiler

I've been experimenting on heroku.com with node.js and I've heard of a "REPL process" I could use for experimenting in my app’s environment.

Could someone give me an overview of what it is, and how it might be applied?

link|improve this question

feedback

migrated from webapps.stackexchange.com Jan 4 at 18:12

This question came from our site for power users of web applications.

closed as exact duplicate by jcolebrand, alessioalex, Anna Lear Jan 6 at 3:23

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 3 down vote accepted

REPL - As per the Wikipedia entry

It's a Read Eval Print Loop.

What that means for you is: It's like a console for your app. Every line you type is added to the existing program. But it's a bit more complicated than a "mere console" and it has some fancy additional things you can do.

In the case of your question, it's the node that's the REPL, and if you invoke node (like on your own machine - it's not a very large program) without any app code, you get the REPL.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.