Skip to content

Instantly share code, notes, and snippets.

@MichaelJCole
Created May 30, 2015 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MichaelJCole/aa4895dc6cf260c9445f to your computer and use it in GitHub Desktop.
Save MichaelJCole/aa4895dc6cf260c9445f to your computer and use it in GitHub Desktop.
New /platforms/browser/cordova/run
#!/usr/bin/env node
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
var shell = require('shelljs'),
spawn = require('child_process').spawn,
exec = require('child_process').exec,
project = 'file://' + shell.pwd() + '/platforms/browser/www/index.html';
switch (process.platform) {
case 'darwin':
spawn('open', ['-n', '-a', 'Google\ Chrome', '--args', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project]);
break;
case 'win32':
//TODO: Use regex to fix location of chrome.exe
//TODO: Get --user-data-dir to work for windows
spawn('C:/Program Files (x86)/Google/Chrome/Application/chrome.exe', ['--user-data-dir="C:/Chromedevsession"', '--disable-web-security', project]);
break;
case 'linux':
try {
spawn('chromium', ['--test-type', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project], function() {});
} catch (e) {
spawn('google-chrome', ['--test-type', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project]);
}
break;
default:
console.log('not supported yet ' + process.platform);
break;
}
@mark-veenstra
Copy link

I had to change the case 'linux' part to this to be able to catch the error:

  case 'linux':
    var chromium = spawn('chromium', ['--test-type', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project]);
    chromium.on('error', function(err) {
        var googlechrome = spawn('google-chrome', ['--test-type', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project]);
        googlechrome.on('error', function(err) {
            console.log('command chromium or google-chrome not found on platform ' + process.platform);
        });
    });

See complete gist here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment