added Google v8 engine to sublime text 2
Realtime syntax checking with PyV8
check & mark syntax errors
Show jshint result by press ctrl+alt+h key
jshint result can be shown (including errors and warnings)
with jshint settings in JSHINT.sublime-settings
a js console shown by press ctrl+alt+j key
use it like the python console
//example
require('base');
exports = TextCommand("HelloWorld", function(view, edit){
view.insert(edit, 0, "HelloWorld");
console.log(view.file_name());
});
If the plugin doesn't work, follow the guide - lib/PyV8/README.md.