I'm developing command line interface with node.js. Can we have custom console like mysql? Like, if we type mysql and enter in console it will come as mysql> so we can do all mysql related operation until we exit. Like that in node.js
> node hello
hello> help
hello> list apps
.
.
hello> exit
>
>node world
world>operation related to world
.
.
world>exit
>
// or if it is executable
>hello
hello>help
hello>list app
hello>exit
>
It would be great if you give some suggestion.