UNPKG

liverepl

Version:

A power node-repl which will auto reload runtime if required file is modified, inspired by ipython autoreload feature.

9 lines (8 loc) 220 B
```shell script cd example1 livereload liverepl> m1_a(); // you will get 'b' liverepl> m2_m1(); // you will get 'm1' liverepl> m1_a(); // modify b/b.js, you still get 'b' liverepl> constant1 // you will get 'aaaaa' ````