JavaScript development environments in desktop browsers are making rapid improvements these days. But how about mobile, or embeded browsers?
This js-console provides JavaScript console for debugging by adding one line in your web page.
- No framework libraries are needed.
- Auto completion
http://y-ich.github.com/js-console/
<meta charset="UTF-8">
<script src="js-console-bundle.js"></script>
- Input some JavaScript expression in the text field.
- Type return key, then a result will appear black pane. You can use cursor buttons at the right side of the text field for editing.
Click black pane, then the position will change up and down.
Click "complete" button, then letters right before the caret will be completed to a candicate.
Click "compelete" button successively, then next candicate will appear.
Click cursor-right button, then the candidate will be adopted.
js-console uses parse-js.js and is built by browserify. I appreciate both projects.