Use "node" as binary instead of "nodejs".
"nodejs" does not exist on Travis, it appears.
diff --git a/js/gulpfile.js b/js/gulpfile.js
index d8f8ef4..88bb002 100644
--- a/js/gulpfile.js
+++ b/js/gulpfile.js
@@ -45,7 +45,7 @@
// Will require proper externs/exports.
var cmd = "mkdir -p commonjs_out/binary && ";
function addTestFile(file) {
- cmd += 'nodejs commonjs/rewrite_tests_for_commonjs.js < ' + file +
+ cmd += 'node commonjs/rewrite_tests_for_commonjs.js < ' + file +
' > commonjs_out/' + file + '&& ';
}